pub enum AnyStructure {
Any(isize),
}
Variants§
Trait Implementations§
Source§impl Clone for AnyStructure
impl Clone for AnyStructure
Source§fn clone(&self) -> AnyStructure
fn clone(&self) -> AnyStructure
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AnyStructure
impl Debug for AnyStructure
Source§impl From<AnyStructure> for isize
impl From<AnyStructure> for isize
Source§fn from(val: AnyStructure) -> Self
fn from(val: AnyStructure) -> Self
Converts to this type from the input type.
Source§impl From<isize> for AnyStructure
impl From<isize> for AnyStructure
Source§impl StructureIdentifier for AnyStructure
impl StructureIdentifier for AnyStructure
impl Copy for AnyStructure
Auto Trait Implementations§
impl Freeze for AnyStructure
impl RefUnwindSafe for AnyStructure
impl Send for AnyStructure
impl Sync for AnyStructure
impl Unpin for AnyStructure
impl UnwindSafe for AnyStructure
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