pub struct Certification {
pub starts_at: Option<Box<Date>>,
pub ends_at: Option<Box<Date>>,
pub name: Option<Option<String>>,
pub license_number: Option<Option<String>>,
pub display_source: Option<Option<String>>,
pub authority: Option<Option<String>>,
pub url: Option<Option<String>>,
}
Fields§
§starts_at: Option<Box<Date>>
§ends_at: Option<Box<Date>>
§name: Option<Option<String>>
Name of the course or program.
license_number: Option<Option<String>>
§display_source: Option<Option<String>>
The organisation body issuing this certificate.
url: Option<Option<String>>
Implementations§
Source§impl Certification
impl Certification
pub fn new() -> Certification
Trait Implementations§
Source§impl Clone for Certification
impl Clone for Certification
Source§fn clone(&self) -> Certification
fn clone(&self) -> Certification
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Certification
impl Debug for Certification
Source§impl Default for Certification
impl Default for Certification
Source§fn default() -> Certification
fn default() -> Certification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Certification
impl<'de> Deserialize<'de> for Certification
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 Certification
impl PartialEq for Certification
Source§impl Serialize for Certification
impl Serialize for Certification
impl StructuralPartialEq for Certification
Auto Trait Implementations§
impl Freeze for Certification
impl RefUnwindSafe for Certification
impl Send for Certification
impl Sync for Certification
impl Unpin for Certification
impl UnwindSafe for Certification
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