pub struct Tuple<'gc> { /* private fields */ }Trait Implementations§
Source§impl<'gc> SeqAccess<'gc> for Tuple<'gc>
impl<'gc> SeqAccess<'gc> for Tuple<'gc>
Source§type Error = Error
type Error = Error
The error type that can be returned if some error occurs during
deserialization.
Source§fn next_element_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>, Error>where
T: DeserializeSeed<'gc>,
fn next_element_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>, Error>where
T: DeserializeSeed<'gc>,
This returns
Ok(Some(value)) for the next value in the sequence, or
Ok(None) if there are no more remaining items. Read moreSource§fn next_element<T>(&mut self) -> Result<Option<T>, Self::Error>where
T: Deserialize<'de>,
fn next_element<T>(&mut self) -> Result<Option<T>, Self::Error>where
T: Deserialize<'de>,
This returns
Ok(Some(value)) for the next value in the sequence, or
Ok(None) if there are no more remaining items. Read moreAuto Trait Implementations§
impl<'gc> Freeze for Tuple<'gc>
impl<'gc> !RefUnwindSafe for Tuple<'gc>
impl<'gc> !Send for Tuple<'gc>
impl<'gc> !Sync for Tuple<'gc>
impl<'gc> Unpin for Tuple<'gc>
impl<'gc> !UnwindSafe for Tuple<'gc>
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