pub struct ContinuationPoint(pub Vec<u8>);Expand description
Opaque-Continuation-Point fuer paginierte Dependency-Listen. XTypes spec §7.6.3.3.3 erlaubt bis zu 32 bytes.
Tuple Fields§
§0: Vec<u8>Implementations§
Source§impl ContinuationPoint
impl ContinuationPoint
Sourcepub fn encode_into(&self, w: &mut BufferWriter) -> Result<(), EncodeError>
pub fn encode_into(&self, w: &mut BufferWriter) -> Result<(), EncodeError>
Encode als fixed-length octet[32] — wir kodieren es als
sequence
§Errors
Buffer-Overflow.
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 ContinuationPoint
impl Clone for ContinuationPoint
Source§fn clone(&self) -> ContinuationPoint
fn clone(&self) -> ContinuationPoint
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 ContinuationPoint
impl Debug for ContinuationPoint
Source§impl Default for ContinuationPoint
impl Default for ContinuationPoint
Source§fn default() -> ContinuationPoint
fn default() -> ContinuationPoint
Returns the “default value” for a type. Read more
Source§impl PartialEq for ContinuationPoint
impl PartialEq for ContinuationPoint
Source§fn eq(&self, other: &ContinuationPoint) -> bool
fn eq(&self, other: &ContinuationPoint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ContinuationPoint
impl StructuralPartialEq for ContinuationPoint
Auto Trait Implementations§
impl Freeze for ContinuationPoint
impl RefUnwindSafe for ContinuationPoint
impl Send for ContinuationPoint
impl Sync for ContinuationPoint
impl Unpin for ContinuationPoint
impl UnsafeUnpin for ContinuationPoint
impl UnwindSafe for ContinuationPoint
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