[][src]Struct google_sheets4::Slicer

pub struct Slicer {
    pub position: Option<EmbeddedObjectPosition>,
    pub spec: Option<SlicerSpec>,
    pub slicer_id: Option<i32>,
}

A slicer in a sheet.

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

Fields

position: Option<EmbeddedObjectPosition>

The position of the slicer. Note that slicer can be positioned only on existing sheet. Also, width and height of slicer can be automatically adjusted to keep it within permitted limits.

spec: Option<SlicerSpec>

The specification of the slicer.

slicer_id: Option<i32>

The ID of the slicer.

Trait Implementations

impl Clone for Slicer[src]

impl Debug for Slicer[src]

impl Default for Slicer[src]

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

impl Part for Slicer[src]

impl Serialize for Slicer[src]

Auto Trait Implementations

impl RefUnwindSafe for Slicer

impl Send for Slicer

impl Sync for Slicer

impl Unpin for Slicer

impl UnwindSafe for Slicer

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, 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.

impl<T> Typeable for T where
    T: Any