pub struct PreflightEntry {
pub publisher: String,
pub package: String,
pub version: String,
pub state: PublisherState,
}Expand description
One publisher’s result in the preflight report.
Fields§
§publisher: StringShort publisher name for display (e.g. “cargo”, “chocolatey”).
package: StringCrate / package name being checked.
version: StringVersion that was queried.
state: PublisherStateResult of the state query.
Trait Implementations§
Source§impl Clone for PreflightEntry
impl Clone for PreflightEntry
Source§fn clone(&self) -> PreflightEntry
fn clone(&self) -> PreflightEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PreflightEntry
impl RefUnwindSafe for PreflightEntry
impl Send for PreflightEntry
impl Sync for PreflightEntry
impl Unpin for PreflightEntry
impl UnsafeUnpin for PreflightEntry
impl UnwindSafe for PreflightEntry
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