[][src]Struct google_sheets4::UpdateBordersRequest

pub struct UpdateBordersRequest {
    pub range: Option<GridRange>,
    pub right: Option<Border>,
    pub left: Option<Border>,
    pub bottom: Option<Border>,
    pub top: Option<Border>,
    pub inner_vertical: Option<Border>,
    pub inner_horizontal: Option<Border>,
}

Updates the borders of a range. If a field is not set in the request, that means the border remains as-is. For example, with two subsequent UpdateBordersRequest:

  1. range: A1:A5 { top: RED, bottom: WHITE }
  2. range: A1:A5 { left: BLUE }

That would result in A1:A5 having a borders of { top: RED, bottom: WHITE, left: BLUE }. If you want to clear a border, explicitly set the style to NONE.

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

Fields

range: Option<GridRange>

The range whose borders should be updated.

right: Option<Border>

The border to put at the right of the range.

left: Option<Border>

The border to put at the left of the range.

bottom: Option<Border>

The border to put at the bottom of the range.

top: Option<Border>

The border to put at the top of the range.

inner_vertical: Option<Border>

The vertical border to put within the range.

inner_horizontal: Option<Border>

The horizontal border to put within the range.

Trait Implementations

impl Part for UpdateBordersRequest[src]

impl Default for UpdateBordersRequest[src]

impl Clone for UpdateBordersRequest[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for UpdateBordersRequest[src]

impl Serialize for UpdateBordersRequest[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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