pub struct GetTypeDependenciesReply {
pub dependent_typeids: Vec<TypeIdentifierWithSize>,
pub continuation_point: ContinuationPoint,
}Expand description
Antwort fuer TypeLookup::getTypeDependencies.
Fields§
§dependent_typeids: Vec<TypeIdentifierWithSize>Dependencies.
continuation_point: ContinuationPointContinuation-Point (leer = Ende).
Implementations§
Source§impl GetTypeDependenciesReply
impl GetTypeDependenciesReply
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 GetTypeDependenciesReply
impl Clone for GetTypeDependenciesReply
Source§fn clone(&self) -> GetTypeDependenciesReply
fn clone(&self) -> GetTypeDependenciesReply
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 GetTypeDependenciesReply
impl Debug for GetTypeDependenciesReply
Source§impl Default for GetTypeDependenciesReply
impl Default for GetTypeDependenciesReply
Source§fn default() -> GetTypeDependenciesReply
fn default() -> GetTypeDependenciesReply
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetTypeDependenciesReply
impl PartialEq for GetTypeDependenciesReply
Source§fn eq(&self, other: &GetTypeDependenciesReply) -> bool
fn eq(&self, other: &GetTypeDependenciesReply) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for GetTypeDependenciesReply
impl StructuralPartialEq for GetTypeDependenciesReply
Auto Trait Implementations§
impl Freeze for GetTypeDependenciesReply
impl RefUnwindSafe for GetTypeDependenciesReply
impl Send for GetTypeDependenciesReply
impl Sync for GetTypeDependenciesReply
impl Unpin for GetTypeDependenciesReply
impl UnsafeUnpin for GetTypeDependenciesReply
impl UnwindSafe for GetTypeDependenciesReply
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