#[non_exhaustive]pub struct RotateServerCertificateContext {
pub kind: String,
pub next_version: String,
/* private fields */
}Expand description
Instance rotate server certificate context.
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.kind: StringOptional. This is always sql#rotateServerCertificateContext.
next_version: StringThe fingerprint of the next version to be rotated to. If left unspecified, will be rotated to the most recently added server certificate version.
Implementations§
Source§impl RotateServerCertificateContext
impl RotateServerCertificateContext
Trait Implementations§
Source§impl Clone for RotateServerCertificateContext
impl Clone for RotateServerCertificateContext
Source§fn clone(&self) -> RotateServerCertificateContext
fn clone(&self) -> RotateServerCertificateContext
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for RotateServerCertificateContext
impl Default for RotateServerCertificateContext
Source§fn default() -> RotateServerCertificateContext
fn default() -> RotateServerCertificateContext
Returns the “default value” for a type. Read more
Source§impl PartialEq for RotateServerCertificateContext
impl PartialEq for RotateServerCertificateContext
Source§fn eq(&self, other: &RotateServerCertificateContext) -> bool
fn eq(&self, other: &RotateServerCertificateContext) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RotateServerCertificateContext
Auto Trait Implementations§
impl Freeze for RotateServerCertificateContext
impl RefUnwindSafe for RotateServerCertificateContext
impl Send for RotateServerCertificateContext
impl Sync for RotateServerCertificateContext
impl Unpin for RotateServerCertificateContext
impl UnwindSafe for RotateServerCertificateContext
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