pub struct InArray<T> {
pub values: Vec<T>,
}Expand description
InArray
Fields§
§values: Vec<T>Implementations§
Trait Implementations§
Source§impl<'de, T> Deserialize<'de> for InArray<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for InArray<T>where
T: Deserialize<'de>,
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<T> SanitizeAuto for InArray<T>
impl<T> SanitizeAuto for InArray<T>
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<T> SanitizeCustom for InArray<T>
impl<T> SanitizeCustom for InArray<T>
fn sanitize_custom(&mut self)
fn sanitize_custom_with(&mut self, _ctx: &SanitizeContext)
Source§impl<T> ValidateAuto for InArray<T>
impl<T> ValidateAuto for InArray<T>
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<T> ValidateCustom for InArray<T>
impl<T> ValidateCustom for InArray<T>
fn validate_custom(&self) -> Result<(), ErrorTree>
fn validate_custom_with(&self, _ctx: &ValidateContext) -> Result<(), ErrorTree>
impl<T: Eq> Eq for InArray<T>
impl<T> StructuralPartialEq for InArray<T>
Auto Trait Implementations§
impl<T> Freeze for InArray<T>
impl<T> RefUnwindSafe for InArray<T>where
T: RefUnwindSafe,
impl<T> Send for InArray<T>where
T: Send,
impl<T> Sync for InArray<T>where
T: Sync,
impl<T> Unpin for InArray<T>where
T: Unpin,
impl<T> UnwindSafe for InArray<T>where
T: UnwindSafe,
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