pub struct GetTypesReply {
pub types: Vec<ReplyTypeObject>,
}Expand description
Antwort fuer TypeLookup::getTypes.
Fields§
§types: Vec<ReplyTypeObject>Liste der zurueckgelieferten TypeObjects. Nicht-gefundene werden typischerweise ausgelassen; der Caller muss nach TypeIdentifier matchen (ueber den Hash).
Implementations§
Source§impl GetTypesReply
impl GetTypesReply
Sourcepub fn encode_into(&self, w: &mut BufferWriter) -> Result<(), EncodeError>
pub fn encode_into(&self, w: &mut BufferWriter) -> Result<(), EncodeError>
Sourcepub fn decode_from(r: &mut BufferReader<'_>) -> Result<Self, TypeCodecError>
pub fn decode_from(r: &mut BufferReader<'_>) -> Result<Self, TypeCodecError>
Trait Implementations§
Source§impl Clone for GetTypesReply
impl Clone for GetTypesReply
Source§fn clone(&self) -> GetTypesReply
fn clone(&self) -> GetTypesReply
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 GetTypesReply
impl Debug for GetTypesReply
Source§impl Default for GetTypesReply
impl Default for GetTypesReply
Source§fn default() -> GetTypesReply
fn default() -> GetTypesReply
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetTypesReply
impl PartialEq for GetTypesReply
Source§fn eq(&self, other: &GetTypesReply) -> bool
fn eq(&self, other: &GetTypesReply) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for GetTypesReply
impl StructuralPartialEq for GetTypesReply
Auto Trait Implementations§
impl Freeze for GetTypesReply
impl RefUnwindSafe for GetTypesReply
impl Send for GetTypesReply
impl Sync for GetTypesReply
impl Unpin for GetTypesReply
impl UnsafeUnpin for GetTypesReply
impl UnwindSafe for GetTypesReply
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