pub enum SandboxGrantInspection {
SandboxBackendProfileList(Vec<SandboxBackendProfile>),
SandboxGrant(Box<SandboxGrant>),
}Variants§
SandboxBackendProfileList(Vec<SandboxBackendProfile>)
SandboxGrant(Box<SandboxGrant>)
Trait Implementations§
Source§impl Clone for SandboxGrantInspection
impl Clone for SandboxGrantInspection
Source§fn clone(&self) -> SandboxGrantInspection
fn clone(&self) -> SandboxGrantInspection
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 SandboxGrantInspection
impl Debug for SandboxGrantInspection
Source§impl Default for SandboxGrantInspection
impl Default for SandboxGrantInspection
Source§impl<'de> Deserialize<'de> for SandboxGrantInspection
impl<'de> Deserialize<'de> for SandboxGrantInspection
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 SandboxGrantInspection
impl PartialEq for SandboxGrantInspection
Source§fn eq(&self, other: &SandboxGrantInspection) -> bool
fn eq(&self, other: &SandboxGrantInspection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SandboxGrantInspection
impl Serialize for SandboxGrantInspection
impl StructuralPartialEq for SandboxGrantInspection
Auto Trait Implementations§
impl Freeze for SandboxGrantInspection
impl RefUnwindSafe for SandboxGrantInspection
impl Send for SandboxGrantInspection
impl Sync for SandboxGrantInspection
impl Unpin for SandboxGrantInspection
impl UnsafeUnpin for SandboxGrantInspection
impl UnwindSafe for SandboxGrantInspection
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