pub struct CodeownersErrors {
pub errors: Vec<CodeownersErrorsErrorsInner>,
}
Expand description
CodeownersErrors : A list of errors found in a repo’s CODEOWNERS file
Fields§
§errors: Vec<CodeownersErrorsErrorsInner>
Implementations§
Source§impl CodeownersErrors
impl CodeownersErrors
Sourcepub fn new(errors: Vec<CodeownersErrorsErrorsInner>) -> CodeownersErrors
pub fn new(errors: Vec<CodeownersErrorsErrorsInner>) -> CodeownersErrors
A list of errors found in a repo’s CODEOWNERS file
Trait Implementations§
Source§impl Clone for CodeownersErrors
impl Clone for CodeownersErrors
Source§fn clone(&self) -> CodeownersErrors
fn clone(&self) -> CodeownersErrors
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 CodeownersErrors
impl Debug for CodeownersErrors
Source§impl Default for CodeownersErrors
impl Default for CodeownersErrors
Source§fn default() -> CodeownersErrors
fn default() -> CodeownersErrors
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodeownersErrors
impl<'de> Deserialize<'de> for CodeownersErrors
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 CodeownersErrors
impl PartialEq for CodeownersErrors
Source§impl Serialize for CodeownersErrors
impl Serialize for CodeownersErrors
impl StructuralPartialEq for CodeownersErrors
Auto Trait Implementations§
impl Freeze for CodeownersErrors
impl RefUnwindSafe for CodeownersErrors
impl Send for CodeownersErrors
impl Sync for CodeownersErrors
impl Unpin for CodeownersErrors
impl UnwindSafe for CodeownersErrors
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