[][src]Struct google_sheets4::Borders

pub struct Borders {
    pub top: Option<Border>,
    pub right: Option<Border>,
    pub bottom: Option<Border>,
    pub left: Option<Border>,
}

The borders of the cell.

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

Fields

top: Option<Border>

The top border of the cell.

right: Option<Border>

The right border of the cell.

bottom: Option<Border>

The bottom border of the cell.

left: Option<Border>

The left border of the cell.

Trait Implementations

impl Clone for Borders[src]

impl Debug for Borders[src]

impl Default for Borders[src]

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

impl Part for Borders[src]

impl Serialize for Borders[src]

Auto Trait Implementations

impl RefUnwindSafe for Borders

impl Send for Borders

impl Sync for Borders

impl Unpin for Borders

impl UnwindSafe for Borders

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