pub struct PropertyItem {
pub id: i32,
pub item: MenuProperty,
}Fields§
§id: i32§item: MenuPropertyTrait Implementations§
Source§impl Debug for PropertyItem
impl Debug for PropertyItem
Source§impl Default for PropertyItem
impl Default for PropertyItem
Source§fn default() -> PropertyItem
fn default() -> PropertyItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PropertyItem
impl<'de> Deserialize<'de> for PropertyItem
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 Serialize for PropertyItem
impl Serialize for PropertyItem
Auto Trait Implementations§
impl Freeze for PropertyItem
impl RefUnwindSafe for PropertyItem
impl Send for PropertyItem
impl Sync for PropertyItem
impl Unpin for PropertyItem
impl UnsafeUnpin for PropertyItem
impl UnwindSafe for PropertyItem
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
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<'de, T> DynamicDeserialize<'de> for Twhere
T: Type + Deserialize<'de>,
impl<'de, T> DynamicDeserialize<'de> for Twhere
T: Type + Deserialize<'de>,
Source§type Deserializer = PhantomData<T>
type Deserializer = PhantomData<T>
A DeserializeSeed implementation for this type.
Source§fn deserializer_for_signature(
signature: &Signature,
) -> Result<<T as DynamicDeserialize<'de>>::Deserializer, Error>
fn deserializer_for_signature( signature: &Signature, ) -> Result<<T as DynamicDeserialize<'de>>::Deserializer, Error>
Get a deserializer compatible with this parsed signature.