pub struct ReadEntityAliasByIdResponse {
pub creation_time: String,
pub canonical_id: String,
pub custom_metadata: Option<HashMap<String, String>>,
pub id: String,
pub last_update_time: String,
pub local: bool,
pub metadata: Option<HashMap<String, String>>,
pub mount_accessor: String,
pub mount_path: String,
pub mount_type: String,
pub name: String,
}
Expand description
Response from executing ReadEntityAliasByIdRequest
Fields§
§creation_time: String
§canonical_id: String
§custom_metadata: Option<HashMap<String, String>>
§id: String
§last_update_time: String
§local: bool
§metadata: Option<HashMap<String, String>>
§mount_accessor: String
§mount_path: String
§mount_type: String
§name: String
Trait Implementations§
source§impl Debug for ReadEntityAliasByIdResponse
impl Debug for ReadEntityAliasByIdResponse
source§impl<'de> Deserialize<'de> for ReadEntityAliasByIdResponse
impl<'de> Deserialize<'de> for ReadEntityAliasByIdResponse
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
Auto Trait Implementations§
impl Freeze for ReadEntityAliasByIdResponse
impl RefUnwindSafe for ReadEntityAliasByIdResponse
impl Send for ReadEntityAliasByIdResponse
impl Sync for ReadEntityAliasByIdResponse
impl Unpin for ReadEntityAliasByIdResponse
impl UnwindSafe for ReadEntityAliasByIdResponse
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