pub enum UrlPathConfig {
Simple(String),
Detailed(UrlPath),
}Variants§
Trait Implementations§
Source§impl Clone for UrlPathConfig
impl Clone for UrlPathConfig
Source§fn clone(&self) -> UrlPathConfig
fn clone(&self) -> UrlPathConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 UrlPathConfig
impl Debug for UrlPathConfig
Source§impl<'de> Deserialize<'de> for UrlPathConfig
impl<'de> Deserialize<'de> for UrlPathConfig
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 UrlPathConfig
impl RefUnwindSafe for UrlPathConfig
impl Send for UrlPathConfig
impl Sync for UrlPathConfig
impl Unpin for UrlPathConfig
impl UnsafeUnpin for UrlPathConfig
impl UnwindSafe for UrlPathConfig
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