pub enum Source {
File {
filename: Option<PathBuf>,
location: PathBuf,
},
SourceUrl {
filename: Option<PathBuf>,
source_url: SourceUrl,
},
}
Expand description
Represents the location that a source file should be retrieved from
It can be either a local file (next to the PKGBUILD) or a URL.
Variants§
File
A local file source.
The location must be a pure file name, without any path components (/
).
Hence, the file must be located directly next to the PKGBUILD.
Fields
SourceUrl
A URL source.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Source
impl<'de> Deserialize<'de> for Source
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 FromStr for Source
impl FromStr for Source
Source§fn from_str(s: &str) -> Result<Self, Self::Err>
fn from_str(s: &str) -> Result<Self, Self::Err>
Parses a Source
from string.
It is either a filename (in the same directory as the PKGBUILD)
or a url, optionally prefixed by a destination file name (separated by ::
).
§Errors
This function returns an error in the following cases:
- The destination file name or url/source file name are malformed.
- The source file name is an absolute path.
§Examples
use std::{path::Path, str::FromStr};
use alpm_types::Source;
use url::Url;
// Parse from a string that represents a remote file link.
let source = Source::from_str("foopkg-1.2.3.tar.gz::https://example.com/download")?;
let Source::SourceUrl {
source_url,
filename,
} = source
else {
panic!()
};
assert_eq!(filename.unwrap(), Path::new("foopkg-1.2.3.tar.gz"));
assert_eq!(source_url.url.inner().host_str(), Some("example.com"));
assert_eq!(source_url.to_string(), "https://example.com/download");
// Parse from a string that represents a local file.
let source = Source::from_str("renamed-source.tar.gz::test.tar.gz")?;
let Source::File { location, filename } = source else {
panic!()
};
assert_eq!(location, Path::new("test.tar.gz"));
assert_eq!(filename.unwrap(), Path::new("renamed-source.tar.gz"));
impl Eq for Source
impl StructuralPartialEq for Source
Auto Trait Implementations§
impl Freeze for Source
impl RefUnwindSafe for Source
impl Send for Source
impl Sync for Source
impl Unpin for Source
impl UnwindSafe for Source
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