pub struct ExpandableResponse {
pub expandable: Option<Vec<String>>,
}
Expand description
ExpandableResponse : An expandable API response.
Fields§
§expandable: Option<Vec<String>>
Implementations§
Source§impl ExpandableResponse
impl ExpandableResponse
Sourcepub fn new() -> ExpandableResponse
pub fn new() -> ExpandableResponse
An expandable API response.
Trait Implementations§
Source§impl Clone for ExpandableResponse
impl Clone for ExpandableResponse
Source§fn clone(&self) -> ExpandableResponse
fn clone(&self) -> ExpandableResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 ExpandableResponse
impl Debug for ExpandableResponse
Source§impl Default for ExpandableResponse
impl Default for ExpandableResponse
Source§fn default() -> ExpandableResponse
fn default() -> ExpandableResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExpandableResponse
impl<'de> Deserialize<'de> for ExpandableResponse
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 PartialEq for ExpandableResponse
impl PartialEq for ExpandableResponse
Source§impl Serialize for ExpandableResponse
impl Serialize for ExpandableResponse
impl StructuralPartialEq for ExpandableResponse
Auto Trait Implementations§
impl Freeze for ExpandableResponse
impl RefUnwindSafe for ExpandableResponse
impl Send for ExpandableResponse
impl Sync for ExpandableResponse
impl Unpin for ExpandableResponse
impl UnwindSafe for ExpandableResponse
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