pub struct ProjectSpendAlertDeletedResource {
pub id: String,
pub object: String,
pub deleted: bool,
}Available on crate feature
administration-types only.Expand description
Confirmation payload returned after deleting a project spend alert.
Fields§
§id: StringThe deleted spend alert ID.
object: StringAlways project.spend_alert.deleted.
deleted: boolWhether the spend alert was deleted.
Trait Implementations§
Source§impl Clone for ProjectSpendAlertDeletedResource
impl Clone for ProjectSpendAlertDeletedResource
Source§fn clone(&self) -> ProjectSpendAlertDeletedResource
fn clone(&self) -> ProjectSpendAlertDeletedResource
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 ProjectSpendAlertDeletedResource
impl<'de> Deserialize<'de> for ProjectSpendAlertDeletedResource
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 ProjectSpendAlertDeletedResource
Auto Trait Implementations§
impl Freeze for ProjectSpendAlertDeletedResource
impl RefUnwindSafe for ProjectSpendAlertDeletedResource
impl Send for ProjectSpendAlertDeletedResource
impl Sync for ProjectSpendAlertDeletedResource
impl Unpin for ProjectSpendAlertDeletedResource
impl UnsafeUnpin for ProjectSpendAlertDeletedResource
impl UnwindSafe for ProjectSpendAlertDeletedResource
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