pub struct AdminCreateDocsSectionResponse {
pub section: Value,
}Expand description
AdminCreateDocsSectionResponse
JSON schema
{
"type": "object",
"required": [
"section"
],
"properties": {
"section": {}
}
}Fields§
§section: ValueImplementations§
Trait Implementations§
Source§impl Clone for AdminCreateDocsSectionResponse
impl Clone for AdminCreateDocsSectionResponse
Source§fn clone(&self) -> AdminCreateDocsSectionResponse
fn clone(&self) -> AdminCreateDocsSectionResponse
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<'de> Deserialize<'de> for AdminCreateDocsSectionResponse
impl<'de> Deserialize<'de> for AdminCreateDocsSectionResponse
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<&AdminCreateDocsSectionResponse> for AdminCreateDocsSectionResponse
impl From<&AdminCreateDocsSectionResponse> for AdminCreateDocsSectionResponse
Source§fn from(value: &AdminCreateDocsSectionResponse) -> Self
fn from(value: &AdminCreateDocsSectionResponse) -> Self
Converts to this type from the input type.
Source§impl From<AdminCreateDocsSectionResponse> for AdminCreateDocsSectionResponse
impl From<AdminCreateDocsSectionResponse> for AdminCreateDocsSectionResponse
Source§fn from(value: AdminCreateDocsSectionResponse) -> Self
fn from(value: AdminCreateDocsSectionResponse) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AdminCreateDocsSectionResponse> for AdminCreateDocsSectionResponse
impl TryFrom<AdminCreateDocsSectionResponse> for AdminCreateDocsSectionResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AdminCreateDocsSectionResponse,
) -> Result<Self, ConversionError>
fn try_from( value: AdminCreateDocsSectionResponse, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AdminCreateDocsSectionResponse
impl RefUnwindSafe for AdminCreateDocsSectionResponse
impl Send for AdminCreateDocsSectionResponse
impl Sync for AdminCreateDocsSectionResponse
impl Unpin for AdminCreateDocsSectionResponse
impl UnsafeUnpin for AdminCreateDocsSectionResponse
impl UnwindSafe for AdminCreateDocsSectionResponse
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