Enum tc_value::LinkProtocol
source · [−]pub enum LinkProtocol {
HTTP,
}
Expand description
The protocol portion of a Link
(e.g. “http”)
Variants
HTTP
Trait Implementations
sourceimpl Clone for LinkProtocol
impl Clone for LinkProtocol
sourcefn clone(&self) -> LinkProtocol
fn clone(&self) -> LinkProtocol
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for LinkProtocol
impl Debug for LinkProtocol
sourceimpl Default for LinkProtocol
impl Default for LinkProtocol
sourcefn default() -> LinkProtocol
fn default() -> LinkProtocol
Returns the “default value” for a type. Read more
sourceimpl Display for LinkProtocol
impl Display for LinkProtocol
sourceimpl Hash for LinkProtocol
impl Hash for LinkProtocol
sourceimpl PartialEq<LinkProtocol> for LinkProtocol
impl PartialEq<LinkProtocol> for LinkProtocol
sourcefn eq(&self, other: &LinkProtocol) -> bool
fn eq(&self, other: &LinkProtocol) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Eq for LinkProtocol
impl StructuralEq for LinkProtocol
impl StructuralPartialEq for LinkProtocol
Auto Trait Implementations
impl RefUnwindSafe for LinkProtocol
impl Send for LinkProtocol
impl Sync for LinkProtocol
impl Unpin for LinkProtocol
impl UnwindSafe for LinkProtocol
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<F> Match for F
impl<F> Match for F
sourcefn matches<T>(&self) -> boolwhere
T: TryCastFrom<Self>,
fn matches<T>(&self) -> boolwhere
T: TryCastFrom<Self>,
Returns true
if self
can be cast into the target type T
.
sourceimpl<F, T> TryCastFrom<F> for Twhere
T: CastFrom<F>,
impl<F, T> TryCastFrom<F> for Twhere
T: CastFrom<F>,
sourcefn can_cast_from(&F) -> bool
fn can_cast_from(&F) -> bool
Test if value
can be cast into Self
.
sourcefn opt_cast_from(f: F) -> Option<T>
fn opt_cast_from(f: F) -> Option<T>
Returns Some(Self)
if the source value can be cast into Self
, otherwise None
.
sourcefn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err>where
OnErr: FnOnce(&T) -> Err,
fn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err>where
OnErr: FnOnce(&T) -> Err,
Returns Ok(Self)
if the source value can be cast into Self
, otherwise calls on_err
.
sourceimpl<F, T> TryCastInto<T> for Fwhere
T: TryCastFrom<F>,
impl<F, T> TryCastInto<T> for Fwhere
T: TryCastFrom<F>,
sourcefn can_cast_into(&self) -> bool
fn can_cast_into(&self) -> bool
Test if self
can be cast into T
.
sourcefn opt_cast_into(self) -> Option<T>
fn opt_cast_into(self) -> Option<T>
Returns Some(T)
if self
can be cast into T
, otherwise None
.
sourcefn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err>where
OnErr: FnOnce(&Self) -> Err,
fn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err>where
OnErr: FnOnce(&Self) -> Err,
Returns Ok(T)
if self
can be cast into T
, otherwise calls on_err
.