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 (from /cdns endpoint)
Fields§
§name: String
CDN name/identifier (e.g., “us”, “eu”)
path: String
CDN path prefix (e.g., “tpr/wow”)
hosts: Vec<String>
List of CDN hostnames (space-separated in manifest)
servers: Vec<String>
List of CDN server URLs (space-separated in manifest)
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