pub struct Array<'s>(pub Vec<Data<'s>>);Expand description
Array of AT Protocol data values
Tuple Fields§
§0: Vec<Data<'s>>Implementations§
Trait Implementations§
Source§impl<'de, 'a> Deserialize<'de> for Array<'a>where
'de: 'a,
impl<'de, 'a> Deserialize<'de> for Array<'a>where
'de: 'a,
Source§fn deserialize<D>(
deserializer: D,
) -> Result<Array<'a>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<Array<'a>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl IntoStatic for Array<'_>
impl IntoStatic for Array<'_>
Source§impl Serialize for Array<'_>
impl Serialize for Array<'_>
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl<'s> Eq for Array<'s>
impl<'s> StructuralPartialEq for Array<'s>
Auto Trait Implementations§
impl<'s> Freeze for Array<'s>
impl<'s> RefUnwindSafe for Array<'s>
impl<'s> Send for Array<'s>
impl<'s> Sync for Array<'s>
impl<'s> Unpin for Array<'s>
impl<'s> UnsafeUnpin for Array<'s>
impl<'s> UnwindSafe for Array<'s>
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.