pub struct SourceResponsibility {
pub is_responsible: bool,
pub path: String,
pub extension: Option<String>,
pub language: Option<String>,
pub reason: String,
}Fields§
§is_responsible: bool§path: String§extension: Option<String>§language: Option<String>§reason: StringTrait Implementations§
Source§impl Clone for SourceResponsibility
impl Clone for SourceResponsibility
Source§fn clone(&self) -> SourceResponsibility
fn clone(&self) -> SourceResponsibility
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 SourceResponsibility
impl Debug for SourceResponsibility
Source§impl<'de> Deserialize<'de> for SourceResponsibility
impl<'de> Deserialize<'de> for SourceResponsibility
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 SourceResponsibility
impl RefUnwindSafe for SourceResponsibility
impl Send for SourceResponsibility
impl Sync for SourceResponsibility
impl Unpin for SourceResponsibility
impl UnsafeUnpin for SourceResponsibility
impl UnwindSafe for SourceResponsibility
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