#[non_exhaustive]pub struct SqlTiersListRequest {
pub project: String,
/* private fields */
}
Expand description
Tiers list request.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.project: String
Project ID of the project for which to list tiers.
Implementations§
Trait Implementations§
Source§impl Clone for SqlTiersListRequest
impl Clone for SqlTiersListRequest
Source§fn clone(&self) -> SqlTiersListRequest
fn clone(&self) -> SqlTiersListRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SqlTiersListRequest
impl Debug for SqlTiersListRequest
Source§impl Default for SqlTiersListRequest
impl Default for SqlTiersListRequest
Source§fn default() -> SqlTiersListRequest
fn default() -> SqlTiersListRequest
Returns the “default value” for a type. Read more
Source§impl Message for SqlTiersListRequest
impl Message for SqlTiersListRequest
Source§impl PartialEq for SqlTiersListRequest
impl PartialEq for SqlTiersListRequest
impl StructuralPartialEq for SqlTiersListRequest
Auto Trait Implementations§
impl Freeze for SqlTiersListRequest
impl RefUnwindSafe for SqlTiersListRequest
impl Send for SqlTiersListRequest
impl Sync for SqlTiersListRequest
impl Unpin for SqlTiersListRequest
impl UnwindSafe for SqlTiersListRequest
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