Skip to main content

SheetsApiV3

Enum SheetsApiV3 

Source
pub enum SheetsApiV3 {
Show 27 variants CreateSpreadsheet, GetSpreadsheet(String), PatchSpreadsheet(String), QuerySheets(String), GetSheet(String, String), MoveDimension(String, String), FindCells(String, String), ReplaceCells(String, String), CreateFilter(String, String), UpdateFilter(String, String), GetFilter(String, String), DeleteFilter(String, String), CreateFilterView(String, String), QueryFilterViews(String, String), GetFilterView(String, String, String), PatchFilterView(String, String, String), DeleteFilterView(String, String, String), CreateFilterCondition(String, String, String), QueryFilterConditions(String, String, String), GetFilterCondition(String, String, String, String), UpdateFilterCondition(String, String, String, String), DeleteFilterCondition(String, String, String, String), CreateFloatImage(String, String), QueryFloatImages(String, String), GetFloatImage(String, String, String), PatchFloatImage(String, String, String), DeleteFloatImage(String, String, String),
}
Expand description

Sheets API v3 端点枚举 对应 meta.project = sheets, meta.version = v3

Variants§

§

CreateSpreadsheet

创建电子表格

§

GetSpreadsheet(String)

获取电子表格信息

§

PatchSpreadsheet(String)

修改电子表格属性

§

QuerySheets(String)

获取工作表列表

§

GetSheet(String, String)

查询工作表

§

MoveDimension(String, String)

移动行列

§

FindCells(String, String)

查找单元格

§

ReplaceCells(String, String)

替换单元格

§

CreateFilter(String, String)

创建筛选

§

UpdateFilter(String, String)

更新筛选

§

GetFilter(String, String)

获取筛选

§

DeleteFilter(String, String)

删除筛选

§

CreateFilterView(String, String)

创建筛选视图

§

QueryFilterViews(String, String)

查询筛选视图

§

GetFilterView(String, String, String)

获取筛选视图

§

PatchFilterView(String, String, String)

更新筛选视图

§

DeleteFilterView(String, String, String)

删除筛选视图

§

CreateFilterCondition(String, String, String)

创建筛选条件

§

QueryFilterConditions(String, String, String)

查询筛选条件

§

GetFilterCondition(String, String, String, String)

获取筛选条件

§

UpdateFilterCondition(String, String, String, String)

更新筛选条件

§

DeleteFilterCondition(String, String, String, String)

删除筛选条件

§

CreateFloatImage(String, String)

创建浮动图片

§

QueryFloatImages(String, String)

查询浮动图片

§

GetFloatImage(String, String, String)

获取浮动图片

§

PatchFloatImage(String, String, String)

更新浮动图片

§

DeleteFloatImage(String, String, String)

删除浮动图片

Implementations§

Source§

impl SheetsApiV3

Source

pub fn to_url(&self) -> String

生成对应的 URL

Trait Implementations§

Source§

impl Clone for SheetsApiV3

Source§

fn clone(&self) -> SheetsApiV3

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SheetsApiV3

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for SheetsApiV3

Source§

fn eq(&self, other: &SheetsApiV3) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for SheetsApiV3

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more