pub struct UrlPatternPattern {
pub url_pattern_pattern_type: String,
pub protocol: Option<String>,
pub hostname: Option<String>,
pub port: Option<String>,
pub pathname: Option<String>,
pub search: Option<String>,
}Fields§
§url_pattern_pattern_type: String§protocol: Option<String>§hostname: Option<String>§port: Option<String>§pathname: Option<String>§search: Option<String>Implementations§
Trait Implementations§
Source§impl Debug for UrlPatternPattern
impl Debug for UrlPatternPattern
Source§impl<'de> Deserialize<'de> for UrlPatternPattern
impl<'de> Deserialize<'de> for UrlPatternPattern
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 UrlPatternPattern
impl RefUnwindSafe for UrlPatternPattern
impl Send for UrlPatternPattern
impl Sync for UrlPatternPattern
impl Unpin for UrlPatternPattern
impl UnwindSafe for UrlPatternPattern
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