pub enum ParamLength {
Short(u8),
Long(u32),
}Expand description
Parameter length encoding for FastCGI.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ParamLength
impl Clone for ParamLength
Source§fn clone(&self) -> ParamLength
fn clone(&self) -> ParamLength
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 ParamLength
impl Debug for ParamLength
impl Copy for ParamLength
Auto Trait Implementations§
impl Freeze for ParamLength
impl RefUnwindSafe for ParamLength
impl Send for ParamLength
impl Sync for ParamLength
impl Unpin for ParamLength
impl UnwindSafe for ParamLength
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