pub struct Int32Range {
pub min: Int32,
pub max: Int32,
}Fields§
§min: Int32§max: Int32Implementations§
Trait Implementations§
Source§impl Clone for Int32Range
impl Clone for Int32Range
Source§fn clone(&self) -> Int32Range
fn clone(&self) -> Int32Range
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 Int32Range
impl Debug for Int32Range
Source§impl Default for Int32Range
impl Default for Int32Range
Source§fn default() -> Int32Range
fn default() -> Int32Range
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Int32Rangewhere
Int32Range: Default,
impl<'de> Deserialize<'de> for Int32Rangewhere
Int32Range: Default,
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 FieldValue for Int32Range
impl FieldValue for Int32Range
Source§impl Filterable for Int32Range
impl Filterable for Int32Range
type Filter = NoFilterKind
type ListFilter = NoFilterKind
Source§impl From<&Int32Range> for Int32RangeView
impl From<&Int32Range> for Int32RangeView
Source§fn from(value: &Int32Range) -> Self
fn from(value: &Int32Range) -> Self
Converts to this type from the input type.
Source§impl From<Int32Range> for Int32RangeView
impl From<Int32Range> for Int32RangeView
Source§fn from(value: Int32Range) -> Self
fn from(value: Int32Range) -> Self
Converts to this type from the input type.
Source§impl From<Int32RangeView> for Int32Range
impl From<Int32RangeView> for Int32Range
Source§fn from(view: Int32RangeView) -> Self
fn from(view: Int32RangeView) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Int32Range
impl PartialEq for Int32Range
Source§impl Path for Int32Range
impl Path for Int32Range
Source§impl SanitizeAuto for Int32Range
impl SanitizeAuto for Int32Range
fn sanitize_self(&mut self)
fn sanitize_children(&mut self)
fn sanitize_self_with(&mut self, _ctx: &SanitizeContext)
fn sanitize_children_with(&mut self, _ctx: &SanitizeContext)
Source§impl SanitizeCustom for Int32Range
impl SanitizeCustom for Int32Range
fn sanitize_custom(&mut self)
fn sanitize_custom_with(&mut self, _ctx: &SanitizeContext)
Source§impl Serialize for Int32Range
impl Serialize for Int32Range
Source§impl UpdateView for Int32Range
impl UpdateView for Int32Range
type UpdateViewType = Int32RangeUpdate
Source§fn merge(&mut self, update: Self::UpdateViewType)
fn merge(&mut self, update: Self::UpdateViewType)
merge the updateview into self
Source§impl ValidateAuto for Int32Range
impl ValidateAuto for Int32Range
fn validate_self(&self) -> Result<(), ErrorTree>
fn validate_children(&self) -> Result<(), ErrorTree>
fn validate_self_with(&self, _ctx: &ValidateContext) -> Result<(), ErrorTree>
fn validate_children_with( &self, _ctx: &ValidateContext, ) -> Result<(), ErrorTree>
Source§impl ValidateCustom for Int32Range
impl ValidateCustom for Int32Range
fn validate_custom(&self) -> Result<(), ErrorTree>
fn validate_custom_with(&self, _ctx: &ValidateContext) -> Result<(), ErrorTree>
Source§impl View for Int32Range
impl View for Int32Range
Source§impl Visitable for Int32Range
impl Visitable for Int32Range
impl Eq for Int32Range
impl StructuralPartialEq for Int32Range
Auto Trait Implementations§
impl Freeze for Int32Range
impl RefUnwindSafe for Int32Range
impl Send for Int32Range
impl Sync for Int32Range
impl Unpin for Int32Range
impl UnwindSafe for Int32Range
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