pub struct AttributeResponse {
pub data: Value,
}Expand description
Simplified attribute response from the core trait.
Fields§
§data: ValueThe attribute data as JSON
Trait Implementations§
Source§impl Clone for AttributeResponse
impl Clone for AttributeResponse
Source§fn clone(&self) -> AttributeResponse
fn clone(&self) -> AttributeResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AttributeResponse
impl Debug for AttributeResponse
Source§impl<'de> Deserialize<'de> for AttributeResponse
impl<'de> Deserialize<'de> for AttributeResponse
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
Auto Trait Implementations§
impl Freeze for AttributeResponse
impl RefUnwindSafe for AttributeResponse
impl Send for AttributeResponse
impl Sync for AttributeResponse
impl Unpin for AttributeResponse
impl UnsafeUnpin for AttributeResponse
impl UnwindSafe for AttributeResponse
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