pub struct UbuntuSymbolPaths {
pub output_directory: PathBuf,
pub linux_image: Option<ArtifactPaths>,
pub linux_image_dbgsym: Option<ArtifactPaths>,
pub linux_modules: Option<ArtifactPaths>,
}Expand description
Result of a download() call. Mirrors the request structurally: if the
request had Some(policy) for an artifact, the response has Some(paths).
Fields§
§output_directory: PathBufDirectory that holds the per-signature subdirectory.
linux_image: Option<ArtifactPaths>Paths of the kernel image, if requested.
linux_image_dbgsym: Option<ArtifactPaths>Paths of the kernel debug-symbols image, if requested.
linux_modules: Option<ArtifactPaths>Paths of the kernel modules package, if requested.
Trait Implementations§
Source§impl Clone for UbuntuSymbolPaths
impl Clone for UbuntuSymbolPaths
Source§fn clone(&self) -> UbuntuSymbolPaths
fn clone(&self) -> UbuntuSymbolPaths
Returns a duplicate 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 UbuntuSymbolPaths
impl Debug for UbuntuSymbolPaths
Source§impl Default for UbuntuSymbolPaths
impl Default for UbuntuSymbolPaths
Source§fn default() -> UbuntuSymbolPaths
fn default() -> UbuntuSymbolPaths
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UbuntuSymbolPaths
impl RefUnwindSafe for UbuntuSymbolPaths
impl Send for UbuntuSymbolPaths
impl Sync for UbuntuSymbolPaths
impl Unpin for UbuntuSymbolPaths
impl UnsafeUnpin for UbuntuSymbolPaths
impl UnwindSafe for UbuntuSymbolPaths
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