pub struct CreateRelTypeResponse {
pub type_id: u32,
pub message: String,
pub error: Option<String>,
}Expand description
Create relationship type response
Fields§
§type_id: u32Relationship type ID (may be 0 if error)
message: StringSuccess message
error: Option<String>Error message if any
Trait Implementations§
Source§impl Clone for CreateRelTypeResponse
impl Clone for CreateRelTypeResponse
Source§fn clone(&self) -> CreateRelTypeResponse
fn clone(&self) -> CreateRelTypeResponse
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 CreateRelTypeResponse
impl Debug for CreateRelTypeResponse
Source§impl<'de> Deserialize<'de> for CreateRelTypeResponse
impl<'de> Deserialize<'de> for CreateRelTypeResponse
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 CreateRelTypeResponse
impl RefUnwindSafe for CreateRelTypeResponse
impl Send for CreateRelTypeResponse
impl Sync for CreateRelTypeResponse
impl Unpin for CreateRelTypeResponse
impl UnsafeUnpin for CreateRelTypeResponse
impl UnwindSafe for CreateRelTypeResponse
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