pub struct Documentation {
pub documentation_id: OutcomeDocumentationId,
pub enrollment_id: Id,
pub pet_id: PetId,
pub location_id: LocationId,
/* private fields */
}Expand description
Training outcome documentation packet for customer/account history and manager review.
Fields§
§documentation_id: OutcomeDocumentationIdSource-derived documentation id carried by this training contract.
enrollment_id: IdSource-derived enrollment id carried by this training contract.
pet_id: PetIdPet receiving the grooming or care service.
location_id: LocationIdSource-derived location id carried by this training contract.
Implementations§
Source§impl Documentation
impl Documentation
Sourcepub fn builder() -> DocumentationBuilder
pub fn builder() -> DocumentationBuilder
Starts a validated builder for this training documentation or progress packet.
Sourcepub fn claims(&self) -> &[Claim]
pub fn claims(&self) -> &[Claim]
Returns the claims evidence recorded on this training contract.
Sourcepub fn review(&self) -> &OutcomeReviewState
pub fn review(&self) -> &OutcomeReviewState
Returns the review evidence recorded on this training contract.
Sourcepub fn member_facing_boundary(&self) -> MemberFacingBoundary
pub fn member_facing_boundary(&self) -> MemberFacingBoundary
Returns the member facing boundary evidence recorded on this training contract.
Trait Implementations§
Source§impl Clone for Documentation
impl Clone for Documentation
Source§fn clone(&self) -> Documentation
fn clone(&self) -> Documentation
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 Documentation
impl Debug for Documentation
Source§impl<'de> Deserialize<'de> for Documentation
impl<'de> Deserialize<'de> for Documentation
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 Documentation
impl PartialEq for Documentation
Source§impl Serialize for Documentation
impl Serialize for Documentation
impl Eq for Documentation
impl StructuralPartialEq for Documentation
Auto Trait Implementations§
impl Freeze for Documentation
impl RefUnwindSafe for Documentation
impl Send for Documentation
impl Sync for Documentation
impl Unpin for Documentation
impl UnsafeUnpin for Documentation
impl UnwindSafe for Documentation
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