pub struct LoggingCloudfilesAdditional {
pub access_key: Option<String>,
pub bucket_name: Option<String>,
pub path: Option<String>,
pub region: Option<Region>,
pub public_key: Option<String>,
pub user: Option<String>,
}
Fields§
§access_key: Option<String>
Your Cloud Files account access key.
bucket_name: Option<String>
The name of your Cloud Files container.
path: Option<String>
The path to upload logs to.
region: Option<Region>
The region to stream logs to.
public_key: Option<String>
A PGP public key that Fastly will use to encrypt your log files before writing them to disk.
user: Option<String>
The username for your Cloud Files account.
Implementations§
Source§impl LoggingCloudfilesAdditional
impl LoggingCloudfilesAdditional
pub fn new() -> LoggingCloudfilesAdditional
Trait Implementations§
Source§impl Clone for LoggingCloudfilesAdditional
impl Clone for LoggingCloudfilesAdditional
Source§fn clone(&self) -> LoggingCloudfilesAdditional
fn clone(&self) -> LoggingCloudfilesAdditional
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 LoggingCloudfilesAdditional
impl Debug for LoggingCloudfilesAdditional
Source§impl Default for LoggingCloudfilesAdditional
impl Default for LoggingCloudfilesAdditional
Source§fn default() -> LoggingCloudfilesAdditional
fn default() -> LoggingCloudfilesAdditional
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LoggingCloudfilesAdditional
impl<'de> Deserialize<'de> for LoggingCloudfilesAdditional
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
impl StructuralPartialEq for LoggingCloudfilesAdditional
Auto Trait Implementations§
impl Freeze for LoggingCloudfilesAdditional
impl RefUnwindSafe for LoggingCloudfilesAdditional
impl Send for LoggingCloudfilesAdditional
impl Sync for LoggingCloudfilesAdditional
impl Unpin for LoggingCloudfilesAdditional
impl UnwindSafe for LoggingCloudfilesAdditional
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