pub struct UserAuthDataRelationResult {
pub user_id: String,
pub is_success: bool,
pub fail_reason: Option<String>,
}Expand description
用户数据维度绑定结果
Fields§
§user_id: String用户 ID
is_success: bool绑定是否成功
fail_reason: Option<String>失败原因
Trait Implementations§
Source§impl Clone for UserAuthDataRelationResult
impl Clone for UserAuthDataRelationResult
Source§fn clone(&self) -> UserAuthDataRelationResult
fn clone(&self) -> UserAuthDataRelationResult
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 UserAuthDataRelationResult
impl Debug for UserAuthDataRelationResult
Source§impl<'de> Deserialize<'de> for UserAuthDataRelationResult
impl<'de> Deserialize<'de> for UserAuthDataRelationResult
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 UserAuthDataRelationResult
impl RefUnwindSafe for UserAuthDataRelationResult
impl Send for UserAuthDataRelationResult
impl Sync for UserAuthDataRelationResult
impl Unpin for UserAuthDataRelationResult
impl UnsafeUnpin for UserAuthDataRelationResult
impl UnwindSafe for UserAuthDataRelationResult
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