Struct bee_message::output::OutputId [−][src]
pub struct OutputId { /* fields omitted */ }Expand description
The identifier of an Output.
Implementations
impl OutputId[src]
impl OutputId[src]pub fn new(transaction_id: TransactionId, index: u16) -> Result<Self, Error>[src]
pub fn new(transaction_id: TransactionId, index: u16) -> Result<Self, Error>[src]Creates a new OutputId.
pub fn transaction_id(&self) -> &TransactionId[src]
pub fn transaction_id(&self) -> &TransactionId[src]Returns the TransactionId of an OutputId.
Trait Implementations
impl Ord for OutputId[src]
impl Ord for OutputId[src]impl Packable for OutputId[src]
impl Packable for OutputId[src]fn packed_len(&self) -> usize[src]
fn packed_len(&self) -> usize[src]Returns the length of the packed bytes.
fn pack<W: Write>(&self, writer: &mut W) -> Result<(), Self::Error>[src]
fn pack<W: Write>(&self, writer: &mut W) -> Result<(), Self::Error>[src]Packs the instance to bytes and writes them to the passed writer.
fn unpack_inner<R: Read + ?Sized, const CHECK: bool>(
reader: &mut R
) -> Result<Self, Self::Error>[src]
fn unpack_inner<R: Read + ?Sized, const CHECK: bool>(
reader: &mut R
) -> Result<Self, Self::Error>[src]Reads bytes from the passed reader and unpacks them into an instance.
fn pack_new(&self) -> Vec<u8, Global>[src]
fn pack_new(&self) -> Vec<u8, Global>[src]Packs the instance to bytes and writes them to a newly allocated vector.
impl PartialOrd<OutputId> for OutputId[src]
impl PartialOrd<OutputId> for OutputId[src]fn partial_cmp(&self, other: &OutputId) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &OutputId) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for OutputId[src]
impl Eq for OutputId[src]
impl StructuralEq for OutputId[src]
impl StructuralPartialEq for OutputId[src]
Auto Trait Implementations
impl RefUnwindSafe for OutputId
impl Send for OutputId
impl Sync for OutputId
impl Unpin for OutputId
impl UnwindSafe for OutputId
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> Same<T> for T
impl<T> Same<T> for Ttype Output = T
type Output = TShould always be Self
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more