pub struct ValidatorResult {
pub data: Option<Box<ValidatorResultData>>,
}
Expand description
ValidatorResult : Results from VCL linting
Fields§
§data: Option<Box<ValidatorResultData>>
Implementations§
Source§impl ValidatorResult
impl ValidatorResult
Sourcepub fn new() -> ValidatorResult
pub fn new() -> ValidatorResult
Results from VCL linting
Trait Implementations§
Source§impl Clone for ValidatorResult
impl Clone for ValidatorResult
Source§fn clone(&self) -> ValidatorResult
fn clone(&self) -> ValidatorResult
Returns a duplicate of the value. Read more
1.0.0 · 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 ValidatorResult
impl Debug for ValidatorResult
Source§impl Default for ValidatorResult
impl Default for ValidatorResult
Source§fn default() -> ValidatorResult
fn default() -> ValidatorResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ValidatorResult
impl<'de> Deserialize<'de> for ValidatorResult
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 ValidatorResult
impl PartialEq for ValidatorResult
Source§impl Serialize for ValidatorResult
impl Serialize for ValidatorResult
impl StructuralPartialEq for ValidatorResult
Auto Trait Implementations§
impl Freeze for ValidatorResult
impl RefUnwindSafe for ValidatorResult
impl Send for ValidatorResult
impl Sync for ValidatorResult
impl Unpin for ValidatorResult
impl UnwindSafe for ValidatorResult
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