pub struct HardRequirement {
pub bins: Vec<String>,
}Expand description
A hard requirement for an item to be packed into a set of bins
Fields§
§bins: Vec<String>A list of bins that the item must be packed into
Trait Implementations§
Source§impl Clone for HardRequirement
impl Clone for HardRequirement
Source§fn clone(&self) -> HardRequirement
fn clone(&self) -> HardRequirement
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 HardRequirement
impl Debug for HardRequirement
Source§impl Default for HardRequirement
impl Default for HardRequirement
Source§fn default() -> HardRequirement
fn default() -> HardRequirement
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HardRequirement
impl<'de> Deserialize<'de> for HardRequirement
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
Auto Trait Implementations§
impl Freeze for HardRequirement
impl RefUnwindSafe for HardRequirement
impl Send for HardRequirement
impl Sync for HardRequirement
impl Unpin for HardRequirement
impl UnwindSafe for HardRequirement
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