pub struct Table {
pub created_time: Option<i64>,
pub created_time_dt: Option<String>,
pub desc: Option<String>,
pub groups: Vec<Group>,
pub modified_time: Option<i64>,
pub modified_time_dt: Option<String>,
pub name: Option<String>,
pub size: Option<i64>,
pub uid: Option<String>,
}
Expand description
Table
JSON schema
{
"type": "object",
"properties": {
"created_time": {
"type": "integer"
},
"created_time_dt": {
"type": "string"
},
"desc": {
"type": "string"
},
"groups": {
"type": "array",
"items": {
"$ref": "#/$defs/group"
}
},
"modified_time": {
"type": "integer"
},
"modified_time_dt": {
"type": "string"
},
"name": {
"type": "string"
},
"size": {
"type": "integer"
},
"uid": {
"type": "string"
}
}
}
Fields§
§created_time: Option<i64>
§created_time_dt: Option<String>
§desc: Option<String>
§groups: Vec<Group>
§modified_time: Option<i64>
§modified_time_dt: Option<String>
§name: Option<String>
§size: Option<i64>
§uid: Option<String>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Table
impl<'de> Deserialize<'de> for Table
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 Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnwindSafe for Table
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