pub struct GetCollectionSchemaResponse {
pub success: bool,
pub message: Option<String>,
pub data: Option<CollectionSchema>,
}Fields§
§success: bool§message: Option<String>§data: Option<CollectionSchema>Trait Implementations§
Source§impl Clone for GetCollectionSchemaResponse
impl Clone for GetCollectionSchemaResponse
Source§fn clone(&self) -> GetCollectionSchemaResponse
fn clone(&self) -> GetCollectionSchemaResponse
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 GetCollectionSchemaResponse
impl Debug for GetCollectionSchemaResponse
Source§impl<'de> Deserialize<'de> for GetCollectionSchemaResponse
impl<'de> Deserialize<'de> for GetCollectionSchemaResponse
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 GetCollectionSchemaResponse
impl RefUnwindSafe for GetCollectionSchemaResponse
impl Send for GetCollectionSchemaResponse
impl Sync for GetCollectionSchemaResponse
impl Unpin for GetCollectionSchemaResponse
impl UnsafeUnpin for GetCollectionSchemaResponse
impl UnwindSafe for GetCollectionSchemaResponse
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