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