pub enum DynPyAnySerdeOption {
Some(Box<dyn PyAnySerde>),
None,
}Variants§
Some(Box<dyn PyAnySerde>)
None
Trait Implementations§
Source§impl From<DynPyAnySerdeOption> for Option<Box<dyn PyAnySerde>>
impl From<DynPyAnySerdeOption> for Option<Box<dyn PyAnySerde>>
Source§fn from(value: DynPyAnySerdeOption) -> Self
fn from(value: DynPyAnySerdeOption) -> Self
Converts to this type from the input type.
Source§impl<'py> FromPyObject<'py> for DynPyAnySerdeOption
impl<'py> FromPyObject<'py> for DynPyAnySerdeOption
Auto Trait Implementations§
impl Freeze for DynPyAnySerdeOption
impl !RefUnwindSafe for DynPyAnySerdeOption
impl !Send for DynPyAnySerdeOption
impl !Sync for DynPyAnySerdeOption
impl Unpin for DynPyAnySerdeOption
impl !UnwindSafe for DynPyAnySerdeOption
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