pub struct MeetingTimeSuggestion {
pub confidence: i64,
pub order: i32,
pub organizer_availability: FreeBusyStatus,
pub attendee_availability: Vec<AttendeeAvailability>,
pub locations: Vec<Location>,
pub suggestion_reason: String,
pub meeting_time_slot: TimeSlot,
}Fields§
§confidence: i64§order: i32§organizer_availability: FreeBusyStatus§attendee_availability: Vec<AttendeeAvailability>§locations: Vec<Location>§suggestion_reason: String§meeting_time_slot: TimeSlotTrait Implementations§
Source§impl Clone for MeetingTimeSuggestion
impl Clone for MeetingTimeSuggestion
Source§fn clone(&self) -> MeetingTimeSuggestion
fn clone(&self) -> MeetingTimeSuggestion
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 MeetingTimeSuggestion
impl Debug for MeetingTimeSuggestion
Source§impl<'de> Deserialize<'de> for MeetingTimeSuggestion
impl<'de> Deserialize<'de> for MeetingTimeSuggestion
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 MeetingTimeSuggestion
impl PartialEq for MeetingTimeSuggestion
Source§impl Serialize for MeetingTimeSuggestion
impl Serialize for MeetingTimeSuggestion
impl Eq for MeetingTimeSuggestion
impl StructuralPartialEq for MeetingTimeSuggestion
Auto Trait Implementations§
impl Freeze for MeetingTimeSuggestion
impl RefUnwindSafe for MeetingTimeSuggestion
impl Send for MeetingTimeSuggestion
impl Sync for MeetingTimeSuggestion
impl Unpin for MeetingTimeSuggestion
impl UnwindSafe for MeetingTimeSuggestion
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