pub struct AllowConfig {
pub schema_version: String,
pub policy: String,
pub owner: Option<String>,
pub status: Option<String>,
pub workspace: WorkspaceConfig,
pub requirements: Requirements,
pub allow: Vec<AllowEntry>,
}Fields§
§schema_version: String§policy: String§owner: Option<String>§status: Option<String>§workspace: WorkspaceConfig§requirements: Requirements§allow: Vec<AllowEntry>Implementations§
Source§impl AllowConfig
impl AllowConfig
Trait Implementations§
Source§impl Clone for AllowConfig
impl Clone for AllowConfig
Source§fn clone(&self) -> AllowConfig
fn clone(&self) -> AllowConfig
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 AllowConfig
impl Debug for AllowConfig
Source§impl PartialEq for AllowConfig
impl PartialEq for AllowConfig
Source§fn eq(&self, other: &AllowConfig) -> bool
fn eq(&self, other: &AllowConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AllowConfig
impl StructuralPartialEq for AllowConfig
Auto Trait Implementations§
impl Freeze for AllowConfig
impl RefUnwindSafe for AllowConfig
impl Send for AllowConfig
impl Sync for AllowConfig
impl Unpin for AllowConfig
impl UnsafeUnpin for AllowConfig
impl UnwindSafe for AllowConfig
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