pub struct MappingSummary {
pub version: String,
pub name: String,
pub target_schema: String,
pub field_count: usize,
pub is_active: bool,
pub updated_at: String,
}Expand description
Summary of a mapping for listing
Fields§
§version: String§name: String§target_schema: String§field_count: usize§is_active: bool§updated_at: StringTrait Implementations§
Source§impl Clone for MappingSummary
impl Clone for MappingSummary
Source§fn clone(&self) -> MappingSummary
fn clone(&self) -> MappingSummary
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 MappingSummary
impl Debug for MappingSummary
Source§impl<'de> Deserialize<'de> for MappingSummary
impl<'de> Deserialize<'de> for MappingSummary
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 MappingSummary
impl RefUnwindSafe for MappingSummary
impl Send for MappingSummary
impl Sync for MappingSummary
impl Unpin for MappingSummary
impl UnsafeUnpin for MappingSummary
impl UnwindSafe for MappingSummary
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