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