#[non_exhaustive]pub struct TeamMemberLogInfo {
pub account_id: Option<AccountId>,
pub display_name: Option<DisplayNameLegacy>,
pub email: Option<EmailAddress>,
pub team_member_id: Option<TeamMemberId>,
pub member_external_id: Option<MemberExternalId>,
pub team: Option<TeamLogInfo>,
}Available on crate features
dbx_team_log and sync_routes only.Expand description
Team member’s logged information.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.account_id: Option<AccountId>User unique ID.
display_name: Option<DisplayNameLegacy>User display name.
email: Option<EmailAddress>User email address.
team_member_id: Option<TeamMemberId>Team member ID.
member_external_id: Option<MemberExternalId>Team member external ID.
team: Option<TeamLogInfo>Details about this user’s team for enterprise event.
Implementations§
Source§impl TeamMemberLogInfo
impl TeamMemberLogInfo
pub fn with_account_id(self, value: AccountId) -> Self
pub fn with_display_name(self, value: DisplayNameLegacy) -> Self
pub fn with_email(self, value: EmailAddress) -> Self
pub fn with_team_member_id(self, value: TeamMemberId) -> Self
pub fn with_member_external_id(self, value: MemberExternalId) -> Self
pub fn with_team(self, value: TeamLogInfo) -> Self
Trait Implementations§
Source§impl Clone for TeamMemberLogInfo
impl Clone for TeamMemberLogInfo
Source§fn clone(&self) -> TeamMemberLogInfo
fn clone(&self) -> TeamMemberLogInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TeamMemberLogInfo
impl Debug for TeamMemberLogInfo
Source§impl Default for TeamMemberLogInfo
impl Default for TeamMemberLogInfo
Source§fn default() -> TeamMemberLogInfo
fn default() -> TeamMemberLogInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TeamMemberLogInfo
impl<'de> Deserialize<'de> for TeamMemberLogInfo
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TeamMemberLogInfo
Source§impl From<TeamMemberLogInfo> for UserLogInfo
impl From<TeamMemberLogInfo> for UserLogInfo
Source§fn from(subtype: TeamMemberLogInfo) -> Self
fn from(subtype: TeamMemberLogInfo) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TeamMemberLogInfo
impl PartialEq for TeamMemberLogInfo
Source§impl Serialize for TeamMemberLogInfo
impl Serialize for TeamMemberLogInfo
impl StructuralPartialEq for TeamMemberLogInfo
Auto Trait Implementations§
impl Freeze for TeamMemberLogInfo
impl RefUnwindSafe for TeamMemberLogInfo
impl Send for TeamMemberLogInfo
impl Sync for TeamMemberLogInfo
impl Unpin for TeamMemberLogInfo
impl UnsafeUnpin for TeamMemberLogInfo
impl UnwindSafe for TeamMemberLogInfo
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.