Struct bee_message::payload::indexation::IndexationPayload
source · [−]pub struct IndexationPayload { /* private fields */ }Expand description
A payload which holds an index and associated data.
Implementations
Trait Implementations
sourceimpl Clone for IndexationPayload
impl Clone for IndexationPayload
sourcefn clone(&self) -> IndexationPayload
fn clone(&self) -> IndexationPayload
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for IndexationPayload
impl Debug for IndexationPayload
sourceimpl From<IndexationPayload> for Payload
impl From<IndexationPayload> for Payload
sourcefn from(payload: IndexationPayload) -> Self
fn from(payload: IndexationPayload) -> Self
Converts to this type from the input type.
sourceimpl Packable for IndexationPayload
impl Packable for IndexationPayload
sourcefn packed_len(&self) -> usize
fn packed_len(&self) -> usize
Returns the length of the packed bytes.
sourcefn pack<W: Write>(&self, writer: &mut W) -> Result<(), Self::Error>
fn pack<W: Write>(&self, writer: &mut W) -> Result<(), Self::Error>
Packs the instance to bytes and writes them to the passed writer.
sourcefn unpack_inner<R: Read + ?Sized, const CHECK: bool>(
reader: &mut R
) -> Result<Self, Self::Error>
fn unpack_inner<R: Read + ?Sized, const CHECK: bool>(
reader: &mut R
) -> Result<Self, Self::Error>
Reads bytes from the passed reader and unpacks them into an instance.
sourcefn pack_new(&self) -> Vec<u8, Global>
fn pack_new(&self) -> Vec<u8, Global>
Packs the instance to bytes and writes them to a newly allocated vector.
sourceimpl PartialEq<IndexationPayload> for IndexationPayload
impl PartialEq<IndexationPayload> for IndexationPayload
sourcefn eq(&self, other: &IndexationPayload) -> bool
fn eq(&self, other: &IndexationPayload) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &IndexationPayload) -> bool
fn ne(&self, other: &IndexationPayload) -> bool
This method tests for !=.
impl Eq for IndexationPayload
impl StructuralEq for IndexationPayload
impl StructuralPartialEq for IndexationPayload
Auto Trait Implementations
impl RefUnwindSafe for IndexationPayload
impl Send for IndexationPayload
impl Sync for IndexationPayload
impl Unpin for IndexationPayload
impl UnwindSafe for IndexationPayload
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more