pub struct NodeDeleteRequest {
pub tenant_id: String,
pub session_id: String,
pub sync_keys: Vec<String>,
pub node_ids: Vec<String>,
pub dry_run: bool,
}Fields§
§tenant_id: String§session_id: String§sync_keys: Vec<String>§node_ids: Vec<String>§dry_run: boolTrait Implementations§
Source§impl Clone for NodeDeleteRequest
impl Clone for NodeDeleteRequest
Source§fn clone(&self) -> NodeDeleteRequest
fn clone(&self) -> NodeDeleteRequest
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 NodeDeleteRequest
impl Debug for NodeDeleteRequest
Source§impl Default for NodeDeleteRequest
impl Default for NodeDeleteRequest
Source§fn default() -> NodeDeleteRequest
fn default() -> NodeDeleteRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NodeDeleteRequest
impl RefUnwindSafe for NodeDeleteRequest
impl Send for NodeDeleteRequest
impl Sync for NodeDeleteRequest
impl Unpin for NodeDeleteRequest
impl UnsafeUnpin for NodeDeleteRequest
impl UnwindSafe for NodeDeleteRequest
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