pub struct DocumentProduit {
pub nature: &'static str,
pub contenu: String,
}Expand description
Un document produit par l’ACP, du point de vue de cette obligation.
Fields§
§nature: &'static strCe qu’il est, pour que le manquement soit nommable.
contenu: StringLe texte rendu, dans lequel la mention doit apparaître.
Trait Implementations§
Source§impl Clone for DocumentProduit
impl Clone for DocumentProduit
Source§fn clone(&self) -> DocumentProduit
fn clone(&self) -> DocumentProduit
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 DocumentProduit
impl Debug for DocumentProduit
Source§impl PartialEq for DocumentProduit
impl PartialEq for DocumentProduit
Source§fn eq(&self, other: &DocumentProduit) -> bool
fn eq(&self, other: &DocumentProduit) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DocumentProduit
Auto Trait Implementations§
impl Freeze for DocumentProduit
impl RefUnwindSafe for DocumentProduit
impl Send for DocumentProduit
impl Sync for DocumentProduit
impl Unpin for DocumentProduit
impl UnsafeUnpin for DocumentProduit
impl UnwindSafe for DocumentProduit
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Fake for T
impl<T> Fake for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.