pub struct SourceAccountAssignment {
pub schema_version: String,
pub assignment_id: SourceAccountAssignmentId,
pub source_id: SourceId,
pub provider: String,
pub provider_account_id: ProviderAccountId,
pub started_at: DateTime<Utc>,
pub ended_at: Option<DateTime<Utc>>,
pub record_source: IdentitySource,
pub verified_at: Option<DateTime<Utc>>,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Fields§
§schema_version: String§assignment_id: SourceAccountAssignmentId§source_id: SourceId§provider: String§provider_account_id: ProviderAccountId§started_at: DateTime<Utc>§ended_at: Option<DateTime<Utc>>§record_source: IdentitySource§verified_at: Option<DateTime<Utc>>§created_at: DateTime<Utc>§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for SourceAccountAssignment
impl Clone for SourceAccountAssignment
Source§fn clone(&self) -> SourceAccountAssignment
fn clone(&self) -> SourceAccountAssignment
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 SourceAccountAssignment
impl Debug for SourceAccountAssignment
Source§impl<'de> Deserialize<'de> for SourceAccountAssignment
impl<'de> Deserialize<'de> for SourceAccountAssignment
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 SourceAccountAssignment
Source§impl JsonSchema for SourceAccountAssignment
impl JsonSchema for SourceAccountAssignment
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for SourceAccountAssignment
impl PartialEq for SourceAccountAssignment
Source§fn eq(&self, other: &SourceAccountAssignment) -> bool
fn eq(&self, other: &SourceAccountAssignment) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SourceAccountAssignment
impl Serialize for SourceAccountAssignment
impl StructuralPartialEq for SourceAccountAssignment
Auto Trait Implementations§
impl Freeze for SourceAccountAssignment
impl RefUnwindSafe for SourceAccountAssignment
impl Send for SourceAccountAssignment
impl Sync for SourceAccountAssignment
impl Unpin for SourceAccountAssignment
impl UnsafeUnpin for SourceAccountAssignment
impl UnwindSafe for SourceAccountAssignment
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