pub struct PackagesetDiff {
pub description: Option<String>,
pub name: Option<String>,
pub owner_link: Option<Url>,
pub relative_build_score: Option<f64>,
}
Expand description
Representation of the packageset-diff
resource
Fields§
§description: Option<String>
Description
The description for the package set at hand.
name: Option<String>
Valid package set name
owner_link: Option<Url>
Person
The person who owns this package set.
relative_build_score: Option<f64>
Build score
Build score bonus for packages in this package set.
Implementations§
Trait Implementations§
Source§impl Clone for PackagesetDiff
impl Clone for PackagesetDiff
Source§fn clone(&self) -> PackagesetDiff
fn clone(&self) -> PackagesetDiff
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 PackagesetDiff
impl Debug for PackagesetDiff
Source§impl Default for PackagesetDiff
impl Default for PackagesetDiff
Source§impl<'de> Deserialize<'de> for PackagesetDiff
impl<'de> Deserialize<'de> for PackagesetDiff
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 PartialEq for PackagesetDiff
impl PartialEq for PackagesetDiff
Source§impl Serialize for PackagesetDiff
impl Serialize for PackagesetDiff
impl StructuralPartialEq for PackagesetDiff
Auto Trait Implementations§
impl Freeze for PackagesetDiff
impl RefUnwindSafe for PackagesetDiff
impl Send for PackagesetDiff
impl Sync for PackagesetDiff
impl Unpin for PackagesetDiff
impl UnwindSafe for PackagesetDiff
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