pub struct DescribeProjects {
pub all_list: Option<i32>,
pub limit: Option<i32>,
pub offset: Option<i32>,
}
Expand description
Request parameters for Tag DescribeProjects
.
Field | Type | Required | Description |
---|---|---|---|
all_list | Option<i32> | No | Whether to fetch all projects (defaults to 1 ). |
limit | Option<i32> | No | Maximum number of items per page (defaults to 1000 ). |
offset | Option<i32> | No | Pagination offset (defaults to 0 ). |
Fields§
§all_list: Option<i32>
§limit: Option<i32>
§offset: Option<i32>
Implementations§
Source§impl DescribeProjects
impl DescribeProjects
pub fn include_all(self, yes: bool) -> Self
pub fn with_limit(self, limit: i32) -> Self
pub fn with_offset(self, offset: i32) -> Self
Trait Implementations§
Source§impl Default for DescribeProjects
impl Default for DescribeProjects
Source§impl Endpoint for DescribeProjects
impl Endpoint for DescribeProjects
type Output = DescribeProjectsResponse
fn service(&self) -> Cow<'static, str>
fn action(&self) -> Cow<'static, str>
fn version(&self) -> Cow<'static, str>
fn payload(&self) -> Value
fn region(&self) -> Option<Cow<'_, str>>
fn scheme(&self) -> Cow<'static, str>
fn host(&self) -> Cow<'_, str>
fn path(&self) -> Cow<'_, str>
fn extra_headers(&self) -> Option<Vec<(Cow<'_, str>, Cow<'_, str>)>>
fn parse(&self, body: Value) -> Result<Self::Output, TencentCloudError>
Auto Trait Implementations§
impl Freeze for DescribeProjects
impl RefUnwindSafe for DescribeProjects
impl Send for DescribeProjects
impl Sync for DescribeProjects
impl Unpin for DescribeProjects
impl UnwindSafe for DescribeProjects
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more