pub enum CostIntent {
NoKnownCost,
MayIncurCost,
}Expand description
Whether executing the operation may directly incur provider charges.
Variants§
NoKnownCost
The operation has no known direct resource cost.
MayIncurCost
The operation may create or enlarge a billed resource.
Trait Implementations§
Source§impl Clone for CostIntent
impl Clone for CostIntent
Source§fn clone(&self) -> CostIntent
fn clone(&self) -> CostIntent
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 moreimpl Copy for CostIntent
Source§impl Debug for CostIntent
impl Debug for CostIntent
impl Eq for CostIntent
Source§impl Hash for CostIntent
impl Hash for CostIntent
Source§impl Ord for CostIntent
impl Ord for CostIntent
Source§fn cmp(&self, other: &CostIntent) -> Ordering
fn cmp(&self, other: &CostIntent) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CostIntent
impl PartialEq for CostIntent
Source§impl PartialOrd for CostIntent
impl PartialOrd for CostIntent
impl StructuralPartialEq for CostIntent
Auto Trait Implementations§
impl Freeze for CostIntent
impl RefUnwindSafe for CostIntent
impl Send for CostIntent
impl Sync for CostIntent
impl Unpin for CostIntent
impl UnsafeUnpin for CostIntent
impl UnwindSafe for CostIntent
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