pub struct ProjectSpendLimitDeletedResource {
pub object: String,
pub deleted: bool,
}Available on crate feature
administration-types only.Expand description
Confirmation payload returned after deleting a project hard spend limit.
Fields§
§object: StringThe object type, which is always project.spend_limit.deleted.
deleted: boolWhether the hard spend limit was deleted.
Trait Implementations§
Source§impl Clone for ProjectSpendLimitDeletedResource
impl Clone for ProjectSpendLimitDeletedResource
Source§fn clone(&self) -> ProjectSpendLimitDeletedResource
fn clone(&self) -> ProjectSpendLimitDeletedResource
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 moreSource§impl<'de> Deserialize<'de> for ProjectSpendLimitDeletedResource
impl<'de> Deserialize<'de> for ProjectSpendLimitDeletedResource
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ProjectSpendLimitDeletedResource
Auto Trait Implementations§
impl Freeze for ProjectSpendLimitDeletedResource
impl RefUnwindSafe for ProjectSpendLimitDeletedResource
impl Send for ProjectSpendLimitDeletedResource
impl Sync for ProjectSpendLimitDeletedResource
impl Unpin for ProjectSpendLimitDeletedResource
impl UnsafeUnpin for ProjectSpendLimitDeletedResource
impl UnwindSafe for ProjectSpendLimitDeletedResource
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