pub struct ShieldList {
pub id: String,
pub type: String,
pub name: String,
pub enterprise: EnterpriseReference,
pub description: Option<String>,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub content: ShieldListContent,
}Fields§
§id: String§type: String§name: String§enterprise: EnterpriseReference§description: Option<String>§created_at: DateTime<Utc>§updated_at: DateTime<Utc>§content: ShieldListContentTrait Implementations§
Source§impl Clone for ShieldList
impl Clone for ShieldList
Source§fn clone(&self) -> ShieldList
fn clone(&self) -> ShieldList
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 ShieldList
impl Debug for ShieldList
Source§impl Default for ShieldList
impl Default for ShieldList
Source§fn default() -> ShieldList
fn default() -> ShieldList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ShieldList
impl<'de> Deserialize<'de> for ShieldList
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 ShieldList
impl PartialEq for ShieldList
Source§impl Serialize for ShieldList
impl Serialize for ShieldList
impl StructuralPartialEq for ShieldList
Auto Trait Implementations§
impl Freeze for ShieldList
impl RefUnwindSafe for ShieldList
impl Send for ShieldList
impl Sync for ShieldList
impl Unpin for ShieldList
impl UnsafeUnpin for ShieldList
impl UnwindSafe for ShieldList
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