Struct sheets::types::AddNamedRangeResponse
source · pub struct AddNamedRangeResponse {
pub named_range: Option<NamedRange>,
}
Expand description
The result of adding a named range.
Fields
named_range: Option<NamedRange>
The result of adding a named range.
Trait Implementations
sourceimpl Clone for AddNamedRangeResponse
impl Clone for AddNamedRangeResponse
sourcefn clone(&self) -> AddNamedRangeResponse
fn clone(&self) -> AddNamedRangeResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for AddNamedRangeResponse
impl Debug for AddNamedRangeResponse
sourceimpl<'de> Deserialize<'de> for AddNamedRangeResponse
impl<'de> Deserialize<'de> for AddNamedRangeResponse
sourcefn 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
sourceimpl JsonSchema for AddNamedRangeResponse
impl JsonSchema for AddNamedRangeResponse
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresourceimpl PartialEq<AddNamedRangeResponse> for AddNamedRangeResponse
impl PartialEq<AddNamedRangeResponse> for AddNamedRangeResponse
sourcefn eq(&self, other: &AddNamedRangeResponse) -> bool
fn eq(&self, other: &AddNamedRangeResponse) -> bool
sourceimpl Serialize for AddNamedRangeResponse
impl Serialize for AddNamedRangeResponse
impl StructuralPartialEq for AddNamedRangeResponse
Auto Trait Implementations
impl RefUnwindSafe for AddNamedRangeResponse
impl Send for AddNamedRangeResponse
impl Sync for AddNamedRangeResponse
impl Unpin for AddNamedRangeResponse
impl UnwindSafe for AddNamedRangeResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more