pub struct FileURLService {
pub uris: Vec<String>,
pub download: Option<bool>,
pub redirect: Option<bool>,
pub entity: Option<String>,
pub no_cache: Option<bool>,
pub skip_error: Option<bool>,
pub use_primary_site_url: Option<bool>,
pub archive: Option<bool>,
}Expand description
File URL service
Fields§
§uris: Vec<String>§download: Option<bool>§redirect: Option<bool>§entity: Option<String>§no_cache: Option<bool>§skip_error: Option<bool>§use_primary_site_url: Option<bool>§archive: Option<bool>Trait Implementations§
Source§impl Clone for FileURLService
impl Clone for FileURLService
Source§fn clone(&self) -> FileURLService
fn clone(&self) -> FileURLService
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FileURLService
impl Debug for FileURLService
Source§impl Default for FileURLService
impl Default for FileURLService
Source§fn default() -> FileURLService
fn default() -> FileURLService
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FileURLService
impl<'de> Deserialize<'de> for FileURLService
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 FileURLService
impl RefUnwindSafe for FileURLService
impl Send for FileURLService
impl Sync for FileURLService
impl Unpin for FileURLService
impl UnsafeUnpin for FileURLService
impl UnwindSafe for FileURLService
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