#[non_exhaustive]pub struct RemoteVariationDeletePreflight {
pub remote: String,
pub variation: VariationId,
pub expected_remote_oid: String,
pub support_ref: String,
pub token: RemoteVariationDeleteToken,
pub can_delete: bool,
}Expand description
Preflight for removing a visible variation from a shared remote.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.remote: String§variation: VariationId§expected_remote_oid: String§support_ref: String§token: RemoteVariationDeleteToken§can_delete: boolTrait Implementations§
Source§impl Clone for RemoteVariationDeletePreflight
impl Clone for RemoteVariationDeletePreflight
Source§fn clone(&self) -> RemoteVariationDeletePreflight
fn clone(&self) -> RemoteVariationDeletePreflight
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 RemoteVariationDeletePreflight
impl<'de> Deserialize<'de> for RemoteVariationDeletePreflight
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 RemoteVariationDeletePreflight
Source§impl PartialEq for RemoteVariationDeletePreflight
impl PartialEq for RemoteVariationDeletePreflight
Source§fn eq(&self, other: &RemoteVariationDeletePreflight) -> bool
fn eq(&self, other: &RemoteVariationDeletePreflight) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RemoteVariationDeletePreflight
Auto Trait Implementations§
impl Freeze for RemoteVariationDeletePreflight
impl RefUnwindSafe for RemoteVariationDeletePreflight
impl Send for RemoteVariationDeletePreflight
impl Sync for RemoteVariationDeletePreflight
impl Unpin for RemoteVariationDeletePreflight
impl UnsafeUnpin for RemoteVariationDeletePreflight
impl UnwindSafe for RemoteVariationDeletePreflight
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