pub enum RedirectDestination {
Primary(PrimaryExpression),
Concatenation(Concatenation),
}Variants§
Primary(PrimaryExpression)
Concatenation(Concatenation)
Trait Implementations§
Source§impl Clone for RedirectDestination
impl Clone for RedirectDestination
Source§fn clone(&self) -> RedirectDestination
fn clone(&self) -> RedirectDestination
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 RedirectDestination
impl Debug for RedirectDestination
Source§impl<'de> Deserialize<'de> for RedirectDestination
impl<'de> Deserialize<'de> for RedirectDestination
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
Source§impl PartialEq for RedirectDestination
impl PartialEq for RedirectDestination
Source§impl Serialize for RedirectDestination
impl Serialize for RedirectDestination
impl StructuralPartialEq for RedirectDestination
Auto Trait Implementations§
impl Freeze for RedirectDestination
impl RefUnwindSafe for RedirectDestination
impl Send for RedirectDestination
impl Sync for RedirectDestination
impl Unpin for RedirectDestination
impl UnsafeUnpin for RedirectDestination
impl UnwindSafe for RedirectDestination
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