pub struct PinnedAbsolutePackageUrl { /* private fields */ }
Expand description
A URL locating a Fuchsia package. Must have a hash.
Has the form “fuchsia-pkg://
- “repository” is a valid hostname
- “name” is a valid package name
- “variant” is an optional valid package variant
- “hash” is a valid package hash https://fuchsia.dev/fuchsia-src/concepts/packages/package_url
Implementations§
Source§impl PinnedAbsolutePackageUrl
impl PinnedAbsolutePackageUrl
Sourcepub fn new(
repo: RepositoryUrl,
name: PackageName,
variant: Option<PackageVariant>,
hash: Hash,
) -> Self
pub fn new( repo: RepositoryUrl, name: PackageName, variant: Option<PackageVariant>, hash: Hash, ) -> Self
Create a PinnedAbsolutePackageUrl
from its component parts.
Sourcepub fn new_with_path(
repo: RepositoryUrl,
path: &str,
hash: Hash,
) -> Result<Self, ParseError>
pub fn new_with_path( repo: RepositoryUrl, path: &str, hash: Hash, ) -> Result<Self, ParseError>
Create a PinnedAbsolutePackageUrl from its component parts and a &str path
that will be
validated.
Sourcepub fn parse(url: &str) -> Result<Self, ParseError>
pub fn parse(url: &str) -> Result<Self, ParseError>
Parse a “fuchsia-pkg://” URL that locates a pinned (has a hash query parameter) package.
Sourcepub fn from_unpinned(unpinned: UnpinnedAbsolutePackageUrl, hash: Hash) -> Self
pub fn from_unpinned(unpinned: UnpinnedAbsolutePackageUrl, hash: Hash) -> Self
Create a PinnedAbsolutePackageUrl
from an unpinned url and a hash.
Sourcepub fn into_unpinned_and_hash(self) -> (UnpinnedAbsolutePackageUrl, Hash)
pub fn into_unpinned_and_hash(self) -> (UnpinnedAbsolutePackageUrl, Hash)
Split this URL into an unpinned URL and hash.
Sourcepub fn as_unpinned(&self) -> &UnpinnedAbsolutePackageUrl
pub fn as_unpinned(&self) -> &UnpinnedAbsolutePackageUrl
The URL without the hash.
Sourcepub fn set_repository(&mut self, repository: RepositoryUrl) -> &mut Self
pub fn set_repository(&mut self, repository: RepositoryUrl) -> &mut Self
Change the repository to repository
.
Methods from Deref<Target = UnpinnedAbsolutePackageUrl>§
Sourcepub fn repository(&self) -> &RepositoryUrl
pub fn repository(&self) -> &RepositoryUrl
The Repository URL behind this URL (this URL without the path).
Sourcepub fn name(&self) -> &PackageName
pub fn name(&self) -> &PackageName
The package name.
Sourcepub fn variant(&self) -> Option<&PackageVariant>
pub fn variant(&self) -> Option<&PackageVariant>
The optional package variant.
Sourcepub fn set_repository(&mut self, repository: RepositoryUrl) -> &mut Self
pub fn set_repository(&mut self, repository: RepositoryUrl) -> &mut Self
Change the repository to repository
.
Sourcepub fn clear_variant(&mut self) -> &mut Self
pub fn clear_variant(&mut self) -> &mut Self
Clear the variant if there is one.
Trait Implementations§
Source§impl Clone for PinnedAbsolutePackageUrl
impl Clone for PinnedAbsolutePackageUrl
Source§fn clone(&self) -> PinnedAbsolutePackageUrl
fn clone(&self) -> PinnedAbsolutePackageUrl
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 PinnedAbsolutePackageUrl
impl Debug for PinnedAbsolutePackageUrl
Source§impl DerefMut for PinnedAbsolutePackageUrl
impl DerefMut for PinnedAbsolutePackageUrl
Source§impl<'de> Deserialize<'de> for PinnedAbsolutePackageUrl
impl<'de> Deserialize<'de> for PinnedAbsolutePackageUrl
Source§fn deserialize<D>(de: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(de: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for PinnedAbsolutePackageUrl
impl Display for PinnedAbsolutePackageUrl
Source§impl From<PinnedAbsolutePackageUrl> for AbsolutePackageUrl
impl From<PinnedAbsolutePackageUrl> for AbsolutePackageUrl
Source§fn from(pinned: PinnedAbsolutePackageUrl) -> Self
fn from(pinned: PinnedAbsolutePackageUrl) -> Self
Converts to this type from the input type.
Source§impl FromStr for PinnedAbsolutePackageUrl
impl FromStr for PinnedAbsolutePackageUrl
Source§impl Hash for PinnedAbsolutePackageUrl
impl Hash for PinnedAbsolutePackageUrl
Source§impl Ord for PinnedAbsolutePackageUrl
impl Ord for PinnedAbsolutePackageUrl
Source§fn cmp(&self, other: &PinnedAbsolutePackageUrl) -> Ordering
fn cmp(&self, other: &PinnedAbsolutePackageUrl) -> 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 for PinnedAbsolutePackageUrl
impl PartialEq for PinnedAbsolutePackageUrl
Source§impl PartialOrd for PinnedAbsolutePackageUrl
impl PartialOrd for PinnedAbsolutePackageUrl
Source§impl Serialize for PinnedAbsolutePackageUrl
impl Serialize for PinnedAbsolutePackageUrl
Source§impl TryFrom<&str> for PinnedAbsolutePackageUrl
impl TryFrom<&str> for PinnedAbsolutePackageUrl
Source§impl Deref for PinnedAbsolutePackageUrl
impl Deref for PinnedAbsolutePackageUrl
impl Eq for PinnedAbsolutePackageUrl
impl StructuralPartialEq for PinnedAbsolutePackageUrl
Auto Trait Implementations§
impl Freeze for PinnedAbsolutePackageUrl
impl RefUnwindSafe for PinnedAbsolutePackageUrl
impl Send for PinnedAbsolutePackageUrl
impl Sync for PinnedAbsolutePackageUrl
impl Unpin for PinnedAbsolutePackageUrl
impl UnwindSafe for PinnedAbsolutePackageUrl
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)