pub struct DeleteWorkspaceFileParams {
pub path: String,
pub trash: Option<DeleteWorkspaceFileTrash>,
}Expand description
Query and header parameters for deleteWorkspaceFile.
Fields§
§path: String§trash: Option<DeleteWorkspaceFileTrash>Set to false to force a permanent delete even for a user-session (JWT) caller. Ignored for
api-key callers, which always delete permanently.
Trait Implementations§
Source§impl Clone for DeleteWorkspaceFileParams
impl Clone for DeleteWorkspaceFileParams
Source§fn clone(&self) -> DeleteWorkspaceFileParams
fn clone(&self) -> DeleteWorkspaceFileParams
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 Debug for DeleteWorkspaceFileParams
impl Debug for DeleteWorkspaceFileParams
Source§impl Default for DeleteWorkspaceFileParams
impl Default for DeleteWorkspaceFileParams
Source§fn default() -> DeleteWorkspaceFileParams
fn default() -> DeleteWorkspaceFileParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteWorkspaceFileParams
impl<'de> Deserialize<'de> for DeleteWorkspaceFileParams
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 DeleteWorkspaceFileParams
Auto Trait Implementations§
impl Freeze for DeleteWorkspaceFileParams
impl RefUnwindSafe for DeleteWorkspaceFileParams
impl Send for DeleteWorkspaceFileParams
impl Sync for DeleteWorkspaceFileParams
impl Unpin for DeleteWorkspaceFileParams
impl UnsafeUnpin for DeleteWorkspaceFileParams
impl UnwindSafe for DeleteWorkspaceFileParams
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