Struct amazon_sp_services::models::appointment::Appointment
source · [−]pub struct Appointment {
pub appointment_id: Option<String>,
pub appointment_status: Option<AppointmentStatus>,
pub appointment_time: Option<Box<AppointmentTime>>,
pub assigned_technicians: Option<Vec<Technician>>,
pub rescheduled_appointment_id: Option<String>,
pub poa: Option<Box<Poa>>,
}Expand description
Appointment : The details of an appointment.
Fields
appointment_id: Option<String>The appointment identifier.
appointment_status: Option<AppointmentStatus>The status of the appointment.
appointment_time: Option<Box<AppointmentTime>>assigned_technicians: Option<Vec<Technician>>A list of technicians assigned to the service job.
rescheduled_appointment_id: Option<String>The appointment identifier.
poa: Option<Box<Poa>>Implementations
sourceimpl Appointment
impl Appointment
sourcepub fn new() -> Appointment
pub fn new() -> Appointment
The details of an appointment.
Trait Implementations
sourceimpl Clone for Appointment
impl Clone for Appointment
sourcefn clone(&self) -> Appointment
fn clone(&self) -> Appointment
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for Appointment
impl Debug for Appointment
sourceimpl Default for Appointment
impl Default for Appointment
sourcefn default() -> Appointment
fn default() -> Appointment
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for Appointment
impl<'de> Deserialize<'de> for Appointment
sourcefn 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
sourceimpl PartialEq<Appointment> for Appointment
impl PartialEq<Appointment> for Appointment
sourcefn eq(&self, other: &Appointment) -> bool
fn eq(&self, other: &Appointment) -> bool
sourceimpl Serialize for Appointment
impl Serialize for Appointment
impl StructuralPartialEq for Appointment
Auto Trait Implementations
impl RefUnwindSafe for Appointment
impl Send for Appointment
impl Sync for Appointment
impl Unpin for Appointment
impl UnwindSafe for Appointment
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more