pub struct RefValidation {
pub namespace: String,
pub ref_path: String,
pub exists: bool,
pub commit_sha: Option<String>,
pub note_count: usize,
pub corrupt_blobs: usize,
pub orphan_notes: usize,
pub unparseable_notes: usize,
pub issues: Vec<String>,
}Fields§
§namespace: String§ref_path: String§exists: bool§commit_sha: Option<String>§note_count: usize§corrupt_blobs: usize§orphan_notes: usize§unparseable_notes: usize§issues: Vec<String>Trait Implementations§
Source§impl Clone for RefValidation
impl Clone for RefValidation
Source§impl Debug for RefValidation
impl Debug for RefValidation
Source§impl<'de> Deserialize<'de> for RefValidation
impl<'de> Deserialize<'de> for RefValidation
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 RefValidation
impl RefUnwindSafe for RefValidation
impl Send for RefValidation
impl Sync for RefValidation
impl Unpin for RefValidation
impl UnsafeUnpin for RefValidation
impl UnwindSafe for RefValidation
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