pub struct TeamMemberBookingProfile {
pub description: Option<String>,
pub display_name: Option<String>,
pub is_bookable: Option<bool>,
pub profile_image_url: Option<String>,
pub team_member_id: Option<String>,
}Fields§
§description: Option<String>§display_name: Option<String>§is_bookable: Option<bool>§profile_image_url: Option<String>§team_member_id: Option<String>Trait Implementations§
Source§impl Clone for TeamMemberBookingProfile
impl Clone for TeamMemberBookingProfile
Source§fn clone(&self) -> TeamMemberBookingProfile
fn clone(&self) -> TeamMemberBookingProfile
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 TeamMemberBookingProfile
impl Debug for TeamMemberBookingProfile
Source§impl<'de> Deserialize<'de> for TeamMemberBookingProfile
impl<'de> Deserialize<'de> for TeamMemberBookingProfile
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
Auto Trait Implementations§
impl Freeze for TeamMemberBookingProfile
impl RefUnwindSafe for TeamMemberBookingProfile
impl Send for TeamMemberBookingProfile
impl Sync for TeamMemberBookingProfile
impl Unpin for TeamMemberBookingProfile
impl UnwindSafe for TeamMemberBookingProfile
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