Struct bee_ledger::types::TreasuryOutput [−][src]
pub struct TreasuryOutput { /* fields omitted */ }Expand description
Records the creation of a treasury output.
Implementations
impl TreasuryOutput[src]
impl TreasuryOutput[src]pub fn new(inner: TreasuryOutput, milestone_id: MilestoneId) -> Self[src]
pub fn new(inner: TreasuryOutput, milestone_id: MilestoneId) -> Self[src]Creates a new TreasuryOutput.
pub fn inner(&self) -> &TreasuryOutput[src]
pub fn inner(&self) -> &TreasuryOutput[src]Returns the inner output of a TreasuryOutput.
pub fn milestone_id(&self) -> &MilestoneId[src]
pub fn milestone_id(&self) -> &MilestoneId[src]Returns the id of the milestone that created the TreasuryOutput.
Trait Implementations
impl Clone for TreasuryOutput[src]
impl Clone for TreasuryOutput[src]fn clone(&self) -> TreasuryOutput[src]
fn clone(&self) -> TreasuryOutput[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for TreasuryOutput[src]
impl Debug for TreasuryOutput[src]impl Packable for TreasuryOutput[src]
impl Packable for TreasuryOutput[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 PartialEq<TreasuryOutput> for TreasuryOutput[src]
impl PartialEq<TreasuryOutput> for TreasuryOutput[src]fn eq(&self, other: &TreasuryOutput) -> bool[src]
fn eq(&self, other: &TreasuryOutput) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &TreasuryOutput) -> bool[src]
fn ne(&self, other: &TreasuryOutput) -> bool[src]This method tests for !=.
impl Eq for TreasuryOutput[src]
impl StructuralEq for TreasuryOutput[src]
impl StructuralPartialEq for TreasuryOutput[src]
Auto Trait Implementations
impl RefUnwindSafe for TreasuryOutput
impl Send for TreasuryOutput
impl Sync for TreasuryOutput
impl Unpin for TreasuryOutput
impl UnwindSafe for TreasuryOutput
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