pub struct ListRelTypesResponse {
pub types: Vec<RelTypeInfo>,
pub error: Option<String>,
}Expand description
List relationship types response
Fields§
§types: Vec<RelTypeInfo>Relationship types registered in the catalog with their ids.
error: Option<String>Error message if any
Trait Implementations§
Source§impl Clone for ListRelTypesResponse
impl Clone for ListRelTypesResponse
Source§fn clone(&self) -> ListRelTypesResponse
fn clone(&self) -> ListRelTypesResponse
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 ListRelTypesResponse
impl Debug for ListRelTypesResponse
Source§impl<'de> Deserialize<'de> for ListRelTypesResponse
impl<'de> Deserialize<'de> for ListRelTypesResponse
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 ListRelTypesResponse
impl RefUnwindSafe for ListRelTypesResponse
impl Send for ListRelTypesResponse
impl Sync for ListRelTypesResponse
impl Unpin for ListRelTypesResponse
impl UnsafeUnpin for ListRelTypesResponse
impl UnwindSafe for ListRelTypesResponse
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