Struct camo_typescript::PathSegment
source · pub struct PathSegment {
pub name: &'static str,
pub arguments: Vec<Type>,
}
Expand description
A segment of a type path.
Fields§
§name: &'static str
The name of the segment.
arguments: Vec<Type>
The arguments provided to the segment.
Trait Implementations§
source§impl Clone for PathSegment
impl Clone for PathSegment
source§fn clone(&self) -> PathSegment
fn clone(&self) -> PathSegment
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 PathSegment
impl Debug for PathSegment
source§impl Display for PathSegment
impl Display for PathSegment
source§impl From<PathSegment> for PathSegment
impl From<PathSegment> for PathSegment
source§fn from(value: PathSegment) -> Self
fn from(value: PathSegment) -> Self
Converts to this type from the input type.
source§impl PartialEq<PathSegment> for PathSegment
impl PartialEq<PathSegment> for PathSegment
source§fn eq(&self, other: &PathSegment) -> bool
fn eq(&self, other: &PathSegment) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.