pub struct UserOAuthSourceConnection {
pub pk: i32,
pub user: i32,
pub source: Box<Source>,
pub identifier: String,
}
Expand description
UserOAuthSourceConnection : OAuth Source Serializer
Fields§
§pk: i32
§user: i32
§source: Box<Source>
§identifier: String
Implementations§
Trait Implementations§
Source§impl Clone for UserOAuthSourceConnection
impl Clone for UserOAuthSourceConnection
Source§fn clone(&self) -> UserOAuthSourceConnection
fn clone(&self) -> UserOAuthSourceConnection
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 UserOAuthSourceConnection
impl Debug for UserOAuthSourceConnection
Source§impl Default for UserOAuthSourceConnection
impl Default for UserOAuthSourceConnection
Source§fn default() -> UserOAuthSourceConnection
fn default() -> UserOAuthSourceConnection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserOAuthSourceConnection
impl<'de> Deserialize<'de> for UserOAuthSourceConnection
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 StructuralPartialEq for UserOAuthSourceConnection
Auto Trait Implementations§
impl Freeze for UserOAuthSourceConnection
impl RefUnwindSafe for UserOAuthSourceConnection
impl Send for UserOAuthSourceConnection
impl Sync for UserOAuthSourceConnection
impl Unpin for UserOAuthSourceConnection
impl UnwindSafe for UserOAuthSourceConnection
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