pub struct TableMetadata {
pub name: String,
pub desc: Option<String>,
pub source: Option<String>,
pub source_url: Option<Url>,
pub license: Option<String>,
pub license_url: Option<Url>,
pub primary_key: Option<String>,
pub columns: Vec<ColumnMetadata>,
}Fields§
§name: String§desc: Option<String>§source: Option<String>§source_url: Option<Url>§license: Option<String>§license_url: Option<Url>§primary_key: Option<String>§columns: Vec<ColumnMetadata>Trait Implementations§
Source§impl Debug for TableMetadata
impl Debug for TableMetadata
Source§impl<'de> Deserialize<'de> for TableMetadata
impl<'de> Deserialize<'de> for TableMetadata
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 TableMetadata
impl RefUnwindSafe for TableMetadata
impl Send for TableMetadata
impl Sync for TableMetadata
impl Unpin for TableMetadata
impl UnwindSafe for TableMetadata
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