Enum tc_value::LinkProtocol
source · pub enum LinkProtocol {
HTTP,
}
Expand description
The protocol portion of a Link
(e.g. “http”)
Variants§
HTTP
Trait Implementations§
source§impl Clone for LinkProtocol
impl Clone for LinkProtocol
source§fn clone(&self) -> LinkProtocol
fn clone(&self) -> LinkProtocol
Returns a copy 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 LinkProtocol
impl Debug for LinkProtocol
source§impl Default for LinkProtocol
impl Default for LinkProtocol
source§fn default() -> LinkProtocol
fn default() -> LinkProtocol
Returns the “default value” for a type. Read more
source§impl Display for LinkProtocol
impl Display for LinkProtocol
source§impl Hash for LinkProtocol
impl Hash for LinkProtocol
source§impl PartialEq<LinkProtocol> for LinkProtocol
impl PartialEq<LinkProtocol> for LinkProtocol
source§fn 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 ==
.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§
source§impl<F> Match for F
impl<F> Match for F
source§fn 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
.source§impl<F, T> TryCastFrom<F> for Twhere
T: CastFrom<F>,
impl<F, T> TryCastFrom<F> for Twhere
T: CastFrom<F>,
source§fn can_cast_from(_: &F) -> bool
fn can_cast_from(_: &F) -> bool
Test if
value
can be cast into Self
.source§fn 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
.source§impl<F, T> TryCastInto<T> for Fwhere
T: TryCastFrom<F>,
impl<F, T> TryCastInto<T> for Fwhere
T: TryCastFrom<F>,
source§fn can_cast_into(&self) -> bool
fn can_cast_into(&self) -> bool
Test if
self
can be cast into T
.source§fn 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
.