pub struct NuxData {
pub completed: bool,
pub data: Option<String>,
pub expires_at: Option<Datetime>,
pub id: String,
}Available on crate feature
namespace-appbsky only.Expand description
A new user experiences (NUX) storage object
Fields§
§completed: bool§data: Option<String>Arbitrary data for the NUX. The structure is defined by the NUX itself. Limited to 300 characters.
expires_at: Option<Datetime>The date and time at which the NUX will expire and should be considered completed.
id: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for NuxData
impl<'de> Deserialize<'de> for NuxData
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
impl Eq for NuxData
impl StructuralPartialEq for NuxData
Auto Trait Implementations§
impl Freeze for NuxData
impl RefUnwindSafe for NuxData
impl Send for NuxData
impl Sync for NuxData
impl Unpin for NuxData
impl UnwindSafe for NuxData
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§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.