pub struct ComputedBound {
pub param_index: u32,
pub mode: BoundMode,
}Expand description
A computed return bound: return interval depends on an argument property.
Fields§
§param_index: u32Which parameter’s property bounds the return value.
mode: BoundModeHow the return is bounded.
Trait Implementations§
Source§impl Clone for ComputedBound
impl Clone for ComputedBound
Source§fn clone(&self) -> ComputedBound
fn clone(&self) -> ComputedBound
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 ComputedBound
impl Debug for ComputedBound
Source§impl PartialEq for ComputedBound
impl PartialEq for ComputedBound
impl Eq for ComputedBound
impl StructuralPartialEq for ComputedBound
Auto Trait Implementations§
impl Freeze for ComputedBound
impl RefUnwindSafe for ComputedBound
impl Send for ComputedBound
impl Sync for ComputedBound
impl Unpin for ComputedBound
impl UnsafeUnpin for ComputedBound
impl UnwindSafe for ComputedBound
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.