pub struct LoggingGcsAdditional {
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>>
§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 LoggingGcsAdditional
impl LoggingGcsAdditional
pub fn new() -> LoggingGcsAdditional
Trait Implementations§
Source§impl Clone for LoggingGcsAdditional
impl Clone for LoggingGcsAdditional
Source§fn clone(&self) -> LoggingGcsAdditional
fn clone(&self) -> LoggingGcsAdditional
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 LoggingGcsAdditional
impl Debug for LoggingGcsAdditional
Source§impl Default for LoggingGcsAdditional
impl Default for LoggingGcsAdditional
Source§fn default() -> LoggingGcsAdditional
fn default() -> LoggingGcsAdditional
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LoggingGcsAdditional
impl<'de> Deserialize<'de> for LoggingGcsAdditional
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 LoggingGcsAdditional
impl PartialEq for LoggingGcsAdditional
Source§impl Serialize for LoggingGcsAdditional
impl Serialize for LoggingGcsAdditional
impl StructuralPartialEq for LoggingGcsAdditional
Auto Trait Implementations§
impl Freeze for LoggingGcsAdditional
impl RefUnwindSafe for LoggingGcsAdditional
impl Send for LoggingGcsAdditional
impl Sync for LoggingGcsAdditional
impl Unpin for LoggingGcsAdditional
impl UnwindSafe for LoggingGcsAdditional
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