pub struct CdnConfig {
pub provider: CdnProvider,
pub edge_locations: Vec<String>,
pub cache_config: CacheConfig,
}
Expand description
CDN設定
Fields§
§provider: CdnProvider
CDNプロバイダー
edge_locations: Vec<String>
CDNエッジロケーション
cache_config: CacheConfig
キャッシュ設定
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CdnConfig
impl<'de> Deserialize<'de> for CdnConfig
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
Auto Trait Implementations§
impl Freeze for CdnConfig
impl RefUnwindSafe for CdnConfig
impl Send for CdnConfig
impl Sync for CdnConfig
impl Unpin for CdnConfig
impl UnwindSafe for CdnConfig
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