#[non_exhaustive]pub struct RotateServerCaContext {
pub kind: String,
pub next_version: String,
/* private fields */
}
Expand description
Instance rotate server CA 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: String
This is always sql#rotateServerCaContext
.
next_version: String
The fingerprint of the next version to be rotated to. If left unspecified, will be rotated to the most recently added server CA version.
Implementations§
Trait Implementations§
Source§impl Clone for RotateServerCaContext
impl Clone for RotateServerCaContext
Source§fn clone(&self) -> RotateServerCaContext
fn clone(&self) -> RotateServerCaContext
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 Debug for RotateServerCaContext
impl Debug for RotateServerCaContext
Source§impl Default for RotateServerCaContext
impl Default for RotateServerCaContext
Source§fn default() -> RotateServerCaContext
fn default() -> RotateServerCaContext
Returns the “default value” for a type. Read more
Source§impl Message for RotateServerCaContext
impl Message for RotateServerCaContext
Source§impl PartialEq for RotateServerCaContext
impl PartialEq for RotateServerCaContext
impl StructuralPartialEq for RotateServerCaContext
Auto Trait Implementations§
impl Freeze for RotateServerCaContext
impl RefUnwindSafe for RotateServerCaContext
impl Send for RotateServerCaContext
impl Sync for RotateServerCaContext
impl Unpin for RotateServerCaContext
impl UnwindSafe for RotateServerCaContext
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