pub enum MemberType {
RequestHeader,
ReplyHeader,
CallUnion(CallUnionDef),
Idl(TypeRef),
}Expand description
Typ eines Struct-Members. Entweder ein bekannter RPC-Header-Typ
(RequestHeader/ReplyHeader/<Service>_Call) oder ein IDL-Typ
aus zerodds_idl::ast::TypeSpec.
Variants§
RequestHeader
RequestHeader aus common_types.rs.
ReplyHeader
ReplyHeader aus common_types.rs.
CallUnion(CallUnionDef)
Synthetisches Union ueber alle Methoden eines Service. Trager fuer den Basic-Layout-Switch.
Idl(TypeRef)
Ein normaler IDL-Typ.
Trait Implementations§
Source§impl Clone for MemberType
impl Clone for MemberType
Source§fn clone(&self) -> MemberType
fn clone(&self) -> MemberType
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 moreSource§impl Debug for MemberType
impl Debug for MemberType
Source§impl PartialEq for MemberType
impl PartialEq for MemberType
Source§fn eq(&self, other: &MemberType) -> bool
fn eq(&self, other: &MemberType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MemberType
Auto Trait Implementations§
impl Freeze for MemberType
impl RefUnwindSafe for MemberType
impl Send for MemberType
impl Sync for MemberType
impl Unpin for MemberType
impl UnsafeUnpin for MemberType
impl UnwindSafe for MemberType
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