pub struct SnapshotShipRequest {
pub target_url: String,
pub bearer_token: Option<String>,
pub tenant_id: Option<String>,
pub namespace: Option<String>,
pub include_archived: bool,
pub mode: ImportMode,
pub dry_run: bool,
}Fields§
§target_url: String§bearer_token: Option<String>§tenant_id: Option<String>§namespace: Option<String>§include_archived: bool§mode: ImportMode§dry_run: boolTrait Implementations§
Source§impl Clone for SnapshotShipRequest
impl Clone for SnapshotShipRequest
Source§fn clone(&self) -> SnapshotShipRequest
fn clone(&self) -> SnapshotShipRequest
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 SnapshotShipRequest
impl Debug for SnapshotShipRequest
Source§impl Default for SnapshotShipRequest
impl Default for SnapshotShipRequest
Source§impl<'de> Deserialize<'de> for SnapshotShipRequestwhere
SnapshotShipRequest: Default,
impl<'de> Deserialize<'de> for SnapshotShipRequestwhere
SnapshotShipRequest: Default,
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 Eq for SnapshotShipRequest
Source§impl PartialEq for SnapshotShipRequest
impl PartialEq for SnapshotShipRequest
Source§fn eq(&self, other: &SnapshotShipRequest) -> bool
fn eq(&self, other: &SnapshotShipRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SnapshotShipRequest
impl Serialize for SnapshotShipRequest
impl StructuralPartialEq for SnapshotShipRequest
Auto Trait Implementations§
impl Freeze for SnapshotShipRequest
impl RefUnwindSafe for SnapshotShipRequest
impl Send for SnapshotShipRequest
impl Sync for SnapshotShipRequest
impl Unpin for SnapshotShipRequest
impl UnsafeUnpin for SnapshotShipRequest
impl UnwindSafe for SnapshotShipRequest
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