pub struct DeleteProjectResult {
pub deleted_resources: Option<Vec<Resource>>,
pub orphaned_resources: Option<Vec<Resource>>,
}
Expand description
Result structure used in response to request to delete a project.
Fields§
§deleted_resources: Option<Vec<Resource>>
Resources which were deleted.
orphaned_resources: Option<Vec<Resource>>
Resources which were not deleted, due to a risk of losing potentially important data or files.
Trait Implementations§
Source§impl Clone for DeleteProjectResult
impl Clone for DeleteProjectResult
Source§fn clone(&self) -> DeleteProjectResult
fn clone(&self) -> DeleteProjectResult
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 DeleteProjectResult
impl Debug for DeleteProjectResult
Source§impl Default for DeleteProjectResult
impl Default for DeleteProjectResult
Source§fn default() -> DeleteProjectResult
fn default() -> DeleteProjectResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteProjectResult
impl<'de> Deserialize<'de> for DeleteProjectResult
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
Source§impl PartialEq for DeleteProjectResult
impl PartialEq for DeleteProjectResult
impl StructuralPartialEq for DeleteProjectResult
Auto Trait Implementations§
impl Freeze for DeleteProjectResult
impl RefUnwindSafe for DeleteProjectResult
impl Send for DeleteProjectResult
impl Sync for DeleteProjectResult
impl Unpin for DeleteProjectResult
impl UnwindSafe for DeleteProjectResult
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