pub struct RangeValuesParams {
pub workbook_or_fork_id: WorkbookId,
pub sheet_name: String,
pub ranges: Vec<String>,
pub include_headers: Option<bool>,
}Fields§
§workbook_or_fork_id: WorkbookId§sheet_name: String§ranges: Vec<String>§include_headers: Option<bool>Trait Implementations§
Source§impl Debug for RangeValuesParams
impl Debug for RangeValuesParams
Source§impl<'de> Deserialize<'de> for RangeValuesParams
impl<'de> Deserialize<'de> for RangeValuesParams
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
Source§impl JsonSchema for RangeValuesParams
impl JsonSchema for RangeValuesParams
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for RangeValuesParams
impl RefUnwindSafe for RangeValuesParams
impl Send for RangeValuesParams
impl Sync for RangeValuesParams
impl Unpin for RangeValuesParams
impl UnwindSafe for RangeValuesParams
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