pub struct AuthorizedBudgetHold {
pub hold_id: Option<String>,
pub authorized_exposure_units: u64,
pub committed_cost_units_after: u64,
pub invocation_count_after: u32,
pub metadata: BudgetCommitMetadata,
}Fields§
§hold_id: Option<String>§committed_cost_units_after: u64§invocation_count_after: u32§metadata: BudgetCommitMetadataTrait Implementations§
Source§impl Clone for AuthorizedBudgetHold
impl Clone for AuthorizedBudgetHold
Source§fn clone(&self) -> AuthorizedBudgetHold
fn clone(&self) -> AuthorizedBudgetHold
Returns a duplicate of the value. Read more
1.0.0 · 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 AuthorizedBudgetHold
impl Debug for AuthorizedBudgetHold
Source§impl PartialEq for AuthorizedBudgetHold
impl PartialEq for AuthorizedBudgetHold
impl Eq for AuthorizedBudgetHold
impl StructuralPartialEq for AuthorizedBudgetHold
Auto Trait Implementations§
impl Freeze for AuthorizedBudgetHold
impl RefUnwindSafe for AuthorizedBudgetHold
impl Send for AuthorizedBudgetHold
impl Sync for AuthorizedBudgetHold
impl Unpin for AuthorizedBudgetHold
impl UnsafeUnpin for AuthorizedBudgetHold
impl UnwindSafe for AuthorizedBudgetHold
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.