pub struct NotSelect<T> { /* private fields */ }
Expand description
§not
operator
Trait Implementations§
Source§impl<'de, T> Deserialize<'de> for NotSelect<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for NotSelect<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> OApiCheckTrait for NotSelect<T>
impl<T> OApiCheckTrait for NotSelect<T>
Source§fn oapi_check(
&self,
root: &SparseRoot<OApiDocument>,
bread_crumb: &mut Vec<String>,
) -> Result<(), OApiError>
fn oapi_check( &self, root: &SparseRoot<OApiDocument>, bread_crumb: &mut Vec<String>, ) -> Result<(), OApiError>
Check the current object, if any checks are to be performed, then checks
its inner attributes
Source§fn oapi_check_inner(
&self,
root: &SparseRoot<OApiDocument>,
bread_crumb: &mut Vec<String>,
) -> Result<(), OApiError>
fn oapi_check_inner( &self, root: &SparseRoot<OApiDocument>, bread_crumb: &mut Vec<String>, ) -> Result<(), OApiError>
Check every inner attributes of the object
Source§impl<T> OApiOperator<T> for NotSelect<T>
impl<T> OApiOperator<T> for NotSelect<T>
Source§fn get(&self) -> Result<Vec<SparseValue<'_, T>>, SparseError>
fn get(&self) -> Result<Vec<SparseValue<'_, T>>, SparseError>
Get the values pointed by the operator
Source§fn new(val: Vec<OperatorSelector<T>>) -> Self
fn new(val: Vec<OperatorSelector<T>>) -> Self
Create a operator providing values
Source§impl<T> Sparsable for NotSelect<T>
impl<T> Sparsable for NotSelect<T>
Source§fn sparse_init(
&mut self,
state: &mut SparseState,
metadata: &SparseMetadata,
depth: u32,
) -> Result<(), SparseError>
fn sparse_init( &mut self, state: &mut SparseState, metadata: &SparseMetadata, depth: u32, ) -> Result<(), SparseError>
Initialize recusively a Sparsable pointer
Source§fn sparse_updt(
&mut self,
state: &mut SparseState,
metadata: &SparseMetadata,
depth: u32,
) -> Result<(), SparseError>
fn sparse_updt( &mut self, state: &mut SparseState, metadata: &SparseMetadata, depth: u32, ) -> Result<(), SparseError>
Update recusively a Sparsable pointer
Source§fn check_depth(&self, depth: u32) -> Result<(), SparseError>
fn check_depth(&self, depth: u32) -> Result<(), SparseError>
Check if the current depth isn’t too much.
This is the cyclic pointer protection mechanism
impl<T> StructuralPartialEq for NotSelect<T>
Auto Trait Implementations§
impl<T> Freeze for NotSelect<T>
impl<T> RefUnwindSafe for NotSelect<T>where
T: RefUnwindSafe,
impl<T> Send for NotSelect<T>where
T: Send,
impl<T> Sync for NotSelect<T>where
T: Sync,
impl<T> Unpin for NotSelect<T>where
T: Unpin,
impl<T> UnwindSafe for NotSelect<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