pub enum TypeLookupReply {
Types(GetTypesReply),
Dependencies(GetTypeDependenciesReply),
}Expand description
Was ein Reply ist — typunterschieden, weil getTypes und
getTypeDependencies separate Reply-Typen haben.
Variants§
Types(GetTypesReply)
Antwort auf getTypes.
Dependencies(GetTypeDependenciesReply)
Antwort auf getTypeDependencies.
Trait Implementations§
Source§impl Clone for TypeLookupReply
impl Clone for TypeLookupReply
Source§fn clone(&self) -> TypeLookupReply
fn clone(&self) -> TypeLookupReply
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 TypeLookupReply
impl RefUnwindSafe for TypeLookupReply
impl Send for TypeLookupReply
impl Sync for TypeLookupReply
impl Unpin for TypeLookupReply
impl UnsafeUnpin for TypeLookupReply
impl UnwindSafe for TypeLookupReply
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