pub enum TypeFrameResult {
Simple(Box<SimpleTypeResult>),
Complex(Box<ComplexTypeResult>),
}Expand description
Type definition result
Variants§
Simple(Box<SimpleTypeResult>)
Complex(Box<ComplexTypeResult>)
Trait Implementations§
Source§impl Clone for TypeFrameResult
impl Clone for TypeFrameResult
Source§fn clone(&self) -> TypeFrameResult
fn clone(&self) -> TypeFrameResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for TypeFrameResult
impl RefUnwindSafe for TypeFrameResult
impl Send for TypeFrameResult
impl Sync for TypeFrameResult
impl Unpin for TypeFrameResult
impl UnsafeUnpin for TypeFrameResult
impl UnwindSafe for TypeFrameResult
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