#[repr(u32)]pub enum SpecType {
Unknown = 0,
Attribute = 1,
Connection = 2,
Expression = 3,
Mapper = 4,
MapperArg = 5,
Prim = 6,
PseudoRoot = 7,
Relationship = 8,
RelationshipTarget = 9,
Variant = 10,
VariantSet = 11,
}Expand description
An enum that specifies the type of an object. Objects have fields and are adressable by path.
Variants§
Unknown = 0
Attribute = 1
Connection = 2
Expression = 3
Mapper = 4
MapperArg = 5
Prim = 6
PseudoRoot = 7
Relationship = 8
RelationshipTarget = 9
Variant = 10
VariantSet = 11
Trait Implementations§
impl Copy for SpecType
impl StructuralPartialEq for SpecType
Auto Trait Implementations§
impl Freeze for SpecType
impl RefUnwindSafe for SpecType
impl Send for SpecType
impl Sync for SpecType
impl Unpin for SpecType
impl UnsafeUnpin for SpecType
impl UnwindSafe for SpecType
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