pub struct CdnEntry {
pub name: String,
pub path: String,
pub hosts: Vec<String>,
pub servers: Vec<String>,
pub config_path: String,
}
Expand description
CDN configuration entry
Fields§
§name: String
CDN name/identifier
path: String
CDN path prefix
hosts: Vec<String>
List of CDN hostnames
servers: Vec<String>
List of CDN server URLs
config_path: String
Configuration path on the CDN
Trait Implementations§
impl StructuralPartialEq for CdnEntry
Auto Trait Implementations§
impl Freeze for CdnEntry
impl RefUnwindSafe for CdnEntry
impl Send for CdnEntry
impl Sync for CdnEntry
impl Unpin for CdnEntry
impl UnwindSafe for CdnEntry
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