pub struct TabularDataResource {Show 14 fields
pub path: Option<PathOrPaths>,
pub data: Option<Vec<Value>>,
pub schema: TableSchema,
pub title: Option<String>,
pub description: Option<String>,
pub homepage: Option<String>,
pub sources: Option<Vec<Source>>,
pub licenses: Option<Vec<License>>,
pub dialect: Option<Dialect>,
pub format: Option<String>,
pub mediatype: Option<String>,
pub encoding: Option<String>,
pub bytes: Option<i64>,
pub hash: Option<String>,
}
Expand description
See https://specs.frictionlessdata.io/tabular-data-resource/
Fields§
§path: Option<PathOrPaths>
§data: Option<Vec<Value>>
§schema: TableSchema
§title: Option<String>
§description: Option<String>
§homepage: Option<String>
§sources: Option<Vec<Source>>
§licenses: Option<Vec<License>>
§dialect: Option<Dialect>
§format: Option<String>
§mediatype: Option<String>
§encoding: Option<String>
§bytes: Option<i64>
§hash: Option<String>
Trait Implementations§
Source§impl Clone for TabularDataResource
impl Clone for TabularDataResource
Source§fn clone(&self) -> TabularDataResource
fn clone(&self) -> TabularDataResource
Returns a copy 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 TabularDataResource
impl Debug for TabularDataResource
Source§impl Default for TabularDataResource
impl Default for TabularDataResource
Source§fn default() -> TabularDataResource
fn default() -> TabularDataResource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TabularDataResource
impl<'de> Deserialize<'de> for TabularDataResource
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TabularDataResource, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TabularDataResource, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TabularDataResource
impl PartialEq for TabularDataResource
Source§impl Serialize for TabularDataResource
impl Serialize for TabularDataResource
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for TabularDataResource
impl StructuralPartialEq for TabularDataResource
Auto Trait Implementations§
impl Freeze for TabularDataResource
impl RefUnwindSafe for TabularDataResource
impl Send for TabularDataResource
impl Sync for TabularDataResource
impl Unpin for TabularDataResource
impl UnwindSafe for TabularDataResource
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