Struct fastly_api::models::logging_gcs_all_of::LoggingGcsAllOf
source · pub struct LoggingGcsAllOf {
pub bucket_name: Option<String>,
pub path: Option<Box<String>>,
pub public_key: Option<String>,
pub project_id: Option<String>,
}
Fields§
§bucket_name: Option<String>
The name of the GCS bucket.
path: Option<Box<String>>
The path to upload logs to.
public_key: Option<String>
A PGP public key that Fastly will use to encrypt your log files before writing them to disk.
project_id: Option<String>
Your Google Cloud Platform project ID. Required
Implementations§
source§impl LoggingGcsAllOf
impl LoggingGcsAllOf
pub fn new() -> LoggingGcsAllOf
Trait Implementations§
source§impl Clone for LoggingGcsAllOf
impl Clone for LoggingGcsAllOf
source§fn clone(&self) -> LoggingGcsAllOf
fn clone(&self) -> LoggingGcsAllOf
Returns a copy 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 LoggingGcsAllOf
impl Debug for LoggingGcsAllOf
source§impl Default for LoggingGcsAllOf
impl Default for LoggingGcsAllOf
source§fn default() -> LoggingGcsAllOf
fn default() -> LoggingGcsAllOf
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LoggingGcsAllOf
impl<'de> Deserialize<'de> for LoggingGcsAllOf
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<LoggingGcsAllOf> for LoggingGcsAllOf
impl PartialEq<LoggingGcsAllOf> for LoggingGcsAllOf
source§fn eq(&self, other: &LoggingGcsAllOf) -> bool
fn eq(&self, other: &LoggingGcsAllOf) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for LoggingGcsAllOf
impl Serialize for LoggingGcsAllOf
impl StructuralPartialEq for LoggingGcsAllOf
Auto Trait Implementations§
impl RefUnwindSafe for LoggingGcsAllOf
impl Send for LoggingGcsAllOf
impl Sync for LoggingGcsAllOf
impl Unpin for LoggingGcsAllOf
impl UnwindSafe for LoggingGcsAllOf
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