pub enum DropSubject {
Collection(String),
Usecase {
collection: String,
usecase: String,
},
}
Variants§
Trait Implementations§
Source§impl Clone for DropSubject
impl Clone for DropSubject
Source§fn clone(&self) -> DropSubject
fn clone(&self) -> DropSubject
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DropSubject
impl Debug for DropSubject
Source§impl<'de> Deserialize<'de> for DropSubject
impl<'de> Deserialize<'de> for DropSubject
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 DropSubject
impl PartialEq for DropSubject
Source§impl Serialize for DropSubject
impl Serialize for DropSubject
impl Eq for DropSubject
impl StructuralPartialEq for DropSubject
Auto Trait Implementations§
impl Freeze for DropSubject
impl RefUnwindSafe for DropSubject
impl Send for DropSubject
impl Sync for DropSubject
impl Unpin for DropSubject
impl UnwindSafe for DropSubject
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