pub struct PostGetQueueInfoBodyParams {
pub trees: Option<Vec<String>>,
}Expand description
PostGetQueueInfoBodyParams
JSON schema
{
"type": "object",
"properties": {
"trees": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}Fields§
§trees: Option<Vec<String>>Implementations§
Source§impl PostGetQueueInfoBodyParams
impl PostGetQueueInfoBodyParams
pub fn builder() -> PostGetQueueInfoBodyParams
Trait Implementations§
Source§impl Clone for PostGetQueueInfoBodyParams
impl Clone for PostGetQueueInfoBodyParams
Source§fn clone(&self) -> PostGetQueueInfoBodyParams
fn clone(&self) -> PostGetQueueInfoBodyParams
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 PostGetQueueInfoBodyParams
impl Debug for PostGetQueueInfoBodyParams
Source§impl Default for PostGetQueueInfoBodyParams
impl Default for PostGetQueueInfoBodyParams
Source§impl<'de> Deserialize<'de> for PostGetQueueInfoBodyParams
impl<'de> Deserialize<'de> for PostGetQueueInfoBodyParams
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 From<PostGetQueueInfoBodyParams> for PostGetQueueInfoBodyParams
impl From<PostGetQueueInfoBodyParams> for PostGetQueueInfoBodyParams
Source§fn from(value: PostGetQueueInfoBodyParams) -> Self
fn from(value: PostGetQueueInfoBodyParams) -> Self
Converts to this type from the input type.
Source§impl TryFrom<PostGetQueueInfoBodyParams> for PostGetQueueInfoBodyParams
impl TryFrom<PostGetQueueInfoBodyParams> for PostGetQueueInfoBodyParams
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: PostGetQueueInfoBodyParams) -> Result<Self, ConversionError>
fn try_from(value: PostGetQueueInfoBodyParams) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for PostGetQueueInfoBodyParams
impl RefUnwindSafe for PostGetQueueInfoBodyParams
impl Send for PostGetQueueInfoBodyParams
impl Sync for PostGetQueueInfoBodyParams
impl Unpin for PostGetQueueInfoBodyParams
impl UnsafeUnpin for PostGetQueueInfoBodyParams
impl UnwindSafe for PostGetQueueInfoBodyParams
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