pub enum TypeDeclarationKind {
Table(Struct),
Struct(Struct),
Enum(Enum),
Union(Union),
RpcService(RpcService),
}Variants§
Trait Implementations§
Source§impl Clone for TypeDeclarationKind
impl Clone for TypeDeclarationKind
Source§fn clone(&self) -> TypeDeclarationKind
fn clone(&self) -> TypeDeclarationKind
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for TypeDeclarationKind
impl RefUnwindSafe for TypeDeclarationKind
impl Send for TypeDeclarationKind
impl Sync for TypeDeclarationKind
impl Unpin for TypeDeclarationKind
impl UnwindSafe for TypeDeclarationKind
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