Struct google_sheets4::api::UpdateBordersRequest [−][src]
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
bottom: Option<Border>The border to put at the bottom of the range.
inner_horizontal: Option<Border>The horizontal border to put within the range.
inner_vertical: Option<Border>The vertical border to put within the range.
left: Option<Border>The border to put at the left of the range.
range: Option<GridRange>The range whose borders should be updated.
right: Option<Border>The border to put at the right of the range.
top: Option<Border>The border to put at the top of the range.
Trait Implementations
impl Clone for UpdateBordersRequest[src]
fn clone(&self) -> UpdateBordersRequest[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for UpdateBordersRequest[src]
impl Default for UpdateBordersRequest[src]
fn default() -> UpdateBordersRequest[src]
impl<'de> Deserialize<'de> for UpdateBordersRequest[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for UpdateBordersRequest[src]
impl Serialize for UpdateBordersRequest[src]
Auto Trait Implementations
impl RefUnwindSafe for UpdateBordersRequest
impl Send for UpdateBordersRequest
impl Sync for UpdateBordersRequest
impl Unpin for UpdateBordersRequest
impl UnwindSafe for UpdateBordersRequest
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,