Struct google_docs1::api::NamedRange[][src]

pub struct NamedRange {
    pub name: Option<String>,
    pub named_range_id: Option<String>,
    pub ranges: Option<Vec<Range>>,
}

A collection of Ranges with the same named range ID. Named ranges allow developers to associate parts of a document with an arbitrary user-defined label so their contents can be programmatically read or edited at a later time. A document can contain multiple named ranges with the same name, but every named range has a unique ID. A named range is created with a single Range, and content inserted inside a named range generally expands that range. However, certain document changes can cause the range to be split into multiple ranges. Named ranges are not private. All applications and collaborators that have access to the document can see its named ranges.

This type is not used in any activity, and only used as part of another schema.

Fields

name: Option<String>

The name of the named range.

named_range_id: Option<String>

The ID of the named range.

ranges: Option<Vec<Range>>

The ranges that belong to this named range.

Trait Implementations

impl Clone for NamedRange[src]

impl Debug for NamedRange[src]

impl Default for NamedRange[src]

impl<'de> Deserialize<'de> for NamedRange[src]

impl Part for NamedRange[src]

impl Serialize for NamedRange[src]

Auto Trait Implementations

impl RefUnwindSafe for NamedRange[src]

impl Send for NamedRange[src]

impl Sync for NamedRange[src]

impl Unpin for NamedRange[src]

impl UnwindSafe for NamedRange[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.