pub struct GetObjectInformationResponse {
pub object_identifier: Option<String>,
pub schema_facets: Option<Vec<SchemaFacet>>,
}Fields§
§object_identifier: Option<String>The ObjectIdentifier of the specified object.
schema_facets: Option<Vec<SchemaFacet>>The facets attached to the specified object. Although the response does not include minor version information, the most recently applied minor version of each Facet is in effect. See GetAppliedSchemaVersion for details.
Trait Implementations§
Source§impl Clone for GetObjectInformationResponse
impl Clone for GetObjectInformationResponse
Source§fn clone(&self) -> GetObjectInformationResponse
fn clone(&self) -> GetObjectInformationResponse
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 GetObjectInformationResponse
impl Debug for GetObjectInformationResponse
Source§impl Default for GetObjectInformationResponse
impl Default for GetObjectInformationResponse
Source§fn default() -> GetObjectInformationResponse
fn default() -> GetObjectInformationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetObjectInformationResponse
impl<'de> Deserialize<'de> for GetObjectInformationResponse
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 GetObjectInformationResponse
impl PartialEq for GetObjectInformationResponse
Source§fn eq(&self, other: &GetObjectInformationResponse) -> bool
fn eq(&self, other: &GetObjectInformationResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetObjectInformationResponse
Auto Trait Implementations§
impl Freeze for GetObjectInformationResponse
impl RefUnwindSafe for GetObjectInformationResponse
impl Send for GetObjectInformationResponse
impl Sync for GetObjectInformationResponse
impl Unpin for GetObjectInformationResponse
impl UnwindSafe for GetObjectInformationResponse
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