pub struct ListSize {
pub assumed_size: Option<u32>,
pub slicing_arguments: Vec<InputValueDefinitionId>,
pub sized_fields: Vec<FieldId>,
pub require_one_slicing_argument: bool,
}Fields§
§assumed_size: Option<u32>§slicing_arguments: Vec<InputValueDefinitionId>§sized_fields: Vec<FieldId>§require_one_slicing_argument: boolTrait Implementations§
Source§impl PartialOrd for ListSize
impl PartialOrd for ListSize
impl StructuralPartialEq for ListSize
Auto Trait Implementations§
impl Freeze for ListSize
impl RefUnwindSafe for ListSize
impl Send for ListSize
impl Sync for ListSize
impl Unpin for ListSize
impl UnwindSafe for ListSize
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,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more