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