Struct fuchsia_url::PackageName
source · pub struct PackageName(_);
Expand description
A Fuchsia Package Name. Package names are the first segment of the path. https://fuchsia.dev/fuchsia-src/concepts/packages/package_url#package-name
Trait Implementations§
source§impl AsRef<str> for PackageName
impl AsRef<str> for PackageName
source§impl Clone for PackageName
impl Clone for PackageName
source§fn clone(&self) -> PackageName
fn clone(&self) -> PackageName
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 PackageName
impl Debug for PackageName
source§impl<'de> Deserialize<'de> for PackageName
impl<'de> Deserialize<'de> for PackageName
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 Display for PackageName
impl Display for PackageName
source§impl From<&PackageName> for String
impl From<&PackageName> for String
source§fn from(name: &PackageName) -> Self
fn from(name: &PackageName) -> Self
Converts to this type from the input type.
source§impl From<PackageName> for RelativePackageUrl
impl From<PackageName> for RelativePackageUrl
source§fn from(path: PackageName) -> Self
fn from(path: PackageName) -> Self
Converts to this type from the input type.
source§impl From<PackageName> for String
impl From<PackageName> for String
source§fn from(name: PackageName) -> Self
fn from(name: PackageName) -> Self
Converts to this type from the input type.
source§impl FromStr for PackageName
impl FromStr for PackageName
source§impl Hash for PackageName
impl Hash for PackageName
source§impl Ord for PackageName
impl Ord for PackageName
source§fn cmp(&self, other: &PackageName) -> Ordering
fn cmp(&self, other: &PackageName) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<PackageName> for PackageName
impl PartialEq<PackageName> for PackageName
source§fn eq(&self, other: &PackageName) -> bool
fn eq(&self, other: &PackageName) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<PackageName> for PackageName
impl PartialOrd<PackageName> for PackageName
source§fn partial_cmp(&self, other: &PackageName) -> Option<Ordering>
fn partial_cmp(&self, other: &PackageName) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more