pub struct TeamMemberAssignedLocations {
pub assignment_type: Option<TeamMemberAssignedLocationsAssignmentType>,
pub location_ids: Option<Vec<String>>,
}
Expand description
A record representing an individual team member for a business.
Fields§
§assignment_type: Option<TeamMemberAssignedLocationsAssignmentType>
The current assignment type of the team member.
location_ids: Option<Vec<String>>
The locations that the team member is assigned to.
Trait Implementations§
Source§impl Clone for TeamMemberAssignedLocations
impl Clone for TeamMemberAssignedLocations
Source§fn clone(&self) -> TeamMemberAssignedLocations
fn clone(&self) -> TeamMemberAssignedLocations
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 TeamMemberAssignedLocations
impl Debug for TeamMemberAssignedLocations
Source§impl Default for TeamMemberAssignedLocations
impl Default for TeamMemberAssignedLocations
Source§fn default() -> TeamMemberAssignedLocations
fn default() -> TeamMemberAssignedLocations
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TeamMemberAssignedLocations
impl<'de> Deserialize<'de> for TeamMemberAssignedLocations
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
impl Eq for TeamMemberAssignedLocations
impl StructuralPartialEq for TeamMemberAssignedLocations
Auto Trait Implementations§
impl Freeze for TeamMemberAssignedLocations
impl RefUnwindSafe for TeamMemberAssignedLocations
impl Send for TeamMemberAssignedLocations
impl Sync for TeamMemberAssignedLocations
impl Unpin for TeamMemberAssignedLocations
impl UnwindSafe for TeamMemberAssignedLocations
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.