pub struct DocSize {
pub over_api_size_limit: bool,
pub page_count: f64,
pub table_and_view_count: f64,
pub total_row_count: f64,
}
Expand description
The number of components within a Coda doc.
JSON schema
{
"description": "The number of components within a Coda doc.",
"type": "object",
"required": [
"overApiSizeLimit",
"pageCount",
"tableAndViewCount",
"totalRowCount"
],
"properties": {
"overApiSizeLimit": {
"description": "If true, indicates that the doc is over the API
size limit.",
"examples": [
false
],
"type": "boolean"
},
"pageCount": {
"description": "The total number of page contained within the
doc.",
"examples": [
10
],
"type": "number"
},
"tableAndViewCount": {
"description": "The total number of tables and views contained
within the doc.",
"examples": [
42
],
"type": "number"
},
"totalRowCount": {
"description": "The number of rows contained within all tables of
the doc.",
"examples": [
31337
],
"type": "number"
}
},
"additionalProperties": false,
"x-schema-name": "DocSize"
}
Fields§
§over_api_size_limit: bool
If true, indicates that the doc is over the API size limit.
page_count: f64
§table_and_view_count: f64
§total_row_count: f64
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DocSize
impl<'de> Deserialize<'de> for DocSize
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 DocSize
impl RefUnwindSafe for DocSize
impl Send for DocSize
impl Sync for DocSize
impl Unpin for DocSize
impl UnwindSafe for DocSize
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