pub struct ExternalSource {
pub bucket_id: i32,
pub external_source_id: i32,
pub external_source_name: String,
pub updated_by: i32,
pub updated_datetime: Option<String>,
}Expand description
Represents the returned external source after creation.
Fields§
§bucket_id: i32§external_source_id: i32§external_source_name: String§updated_by: i32§updated_datetime: Option<String>Trait Implementations§
Source§impl Clone for ExternalSource
impl Clone for ExternalSource
Source§fn clone(&self) -> ExternalSource
fn clone(&self) -> ExternalSource
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 moreAuto Trait Implementations§
impl Freeze for ExternalSource
impl RefUnwindSafe for ExternalSource
impl Send for ExternalSource
impl Sync for ExternalSource
impl Unpin for ExternalSource
impl UnsafeUnpin for ExternalSource
impl UnwindSafe for ExternalSource
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