#[non_exhaustive]pub struct ServiceIdentity {
pub email: String,
/* private fields */
}Expand description
The per-product per-project service identity for Cloud TPU service.
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.email: StringThe email address of the service identity.
Implementations§
Trait Implementations§
Source§impl Clone for ServiceIdentity
impl Clone for ServiceIdentity
Source§fn clone(&self) -> ServiceIdentity
fn clone(&self) -> ServiceIdentity
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 ServiceIdentity
impl Debug for ServiceIdentity
Source§impl Default for ServiceIdentity
impl Default for ServiceIdentity
Source§fn default() -> ServiceIdentity
fn default() -> ServiceIdentity
Returns the “default value” for a type. Read more
Source§impl Message for ServiceIdentity
impl Message for ServiceIdentity
Source§impl PartialEq for ServiceIdentity
impl PartialEq for ServiceIdentity
impl StructuralPartialEq for ServiceIdentity
Auto Trait Implementations§
impl Freeze for ServiceIdentity
impl RefUnwindSafe for ServiceIdentity
impl Send for ServiceIdentity
impl Sync for ServiceIdentity
impl Unpin for ServiceIdentity
impl UnsafeUnpin for ServiceIdentity
impl UnwindSafe for ServiceIdentity
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