pub enum PymolSessionObjectData {
PyObjectMolecule(PyObjectMolecule),
SessionSelectorList(SessionSelectorList),
}
Expand description
PymolSessionObjectData
Differentiate between serializing an object or a selection
They have different shapes
and require custom deserialization.
Variants§
PyObjectMolecule(PyObjectMolecule)
SessionSelectorList(SessionSelectorList)
Trait Implementations§
source§impl Debug for PymolSessionObjectData
impl Debug for PymolSessionObjectData
source§impl<'de> Deserialize<'de> for PymolSessionObjectData
impl<'de> Deserialize<'de> for PymolSessionObjectData
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PymolSessionObjectData
impl RefUnwindSafe for PymolSessionObjectData
impl Send for PymolSessionObjectData
impl Sync for PymolSessionObjectData
impl Unpin for PymolSessionObjectData
impl UnwindSafe for PymolSessionObjectData
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more