pub struct DispositionOverlay {
pub schema_version: String,
pub records: Vec<DispositionRecord>,
}Expand description
Project-local disposition overlay. A SEPARATE file from the signed rule pack — that pack and its detached signature are never touched.
Fields§
§schema_version: String§records: Vec<DispositionRecord>Trait Implementations§
Source§impl Clone for DispositionOverlay
impl Clone for DispositionOverlay
Source§fn clone(&self) -> DispositionOverlay
fn clone(&self) -> DispositionOverlay
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 DispositionOverlay
impl Debug for DispositionOverlay
Source§impl Default for DispositionOverlay
impl Default for DispositionOverlay
Source§impl<'de> Deserialize<'de> for DispositionOverlay
impl<'de> Deserialize<'de> for DispositionOverlay
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
Auto Trait Implementations§
impl Freeze for DispositionOverlay
impl RefUnwindSafe for DispositionOverlay
impl Send for DispositionOverlay
impl Sync for DispositionOverlay
impl Unpin for DispositionOverlay
impl UnsafeUnpin for DispositionOverlay
impl UnwindSafe for DispositionOverlay
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