pub struct GcpPayload {
pub gcp_credentials_json: Option<String>,
pub project_id: Option<String>,
pub use_gw_cloud_identity: Option<bool>,
}Fields§
§gcp_credentials_json: Option<String>§project_id: Option<String>§use_gw_cloud_identity: Option<bool>Implementations§
Source§impl GcpPayload
impl GcpPayload
pub fn new() -> GcpPayload
Trait Implementations§
Source§impl Clone for GcpPayload
impl Clone for GcpPayload
Source§fn clone(&self) -> GcpPayload
fn clone(&self) -> GcpPayload
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GcpPayload
impl Debug for GcpPayload
Source§impl Default for GcpPayload
impl Default for GcpPayload
Source§fn default() -> GcpPayload
fn default() -> GcpPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GcpPayload
impl<'de> Deserialize<'de> for GcpPayload
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GcpPayload
impl PartialEq for GcpPayload
Source§fn eq(&self, other: &GcpPayload) -> bool
fn eq(&self, other: &GcpPayload) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GcpPayload
impl Serialize for GcpPayload
impl StructuralPartialEq for GcpPayload
Auto Trait Implementations§
impl Freeze for GcpPayload
impl RefUnwindSafe for GcpPayload
impl Send for GcpPayload
impl Sync for GcpPayload
impl Unpin for GcpPayload
impl UnsafeUnpin for GcpPayload
impl UnwindSafe for GcpPayload
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