pub struct UpdateFieldMetadataResponse {
pub version: i64,
pub fields: Option<HashMap<String, HashMap<String, String>>>,
}Fields§
§version: i64The commit version associated with the operation
fields: Option<HashMap<String, HashMap<String, String>>>Resulting metadata for each updated field, keyed by canonical Lance field path.
Implementations§
Source§impl UpdateFieldMetadataResponse
impl UpdateFieldMetadataResponse
pub fn new(version: i64) -> UpdateFieldMetadataResponse
Trait Implementations§
Source§impl Clone for UpdateFieldMetadataResponse
impl Clone for UpdateFieldMetadataResponse
Source§fn clone(&self) -> UpdateFieldMetadataResponse
fn clone(&self) -> UpdateFieldMetadataResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateFieldMetadataResponse
impl Debug for UpdateFieldMetadataResponse
Source§impl Default for UpdateFieldMetadataResponse
impl Default for UpdateFieldMetadataResponse
Source§fn default() -> UpdateFieldMetadataResponse
fn default() -> UpdateFieldMetadataResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateFieldMetadataResponse
impl<'de> Deserialize<'de> for UpdateFieldMetadataResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UpdateFieldMetadataResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UpdateFieldMetadataResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdateFieldMetadataResponse
impl PartialEq for UpdateFieldMetadataResponse
Source§fn eq(&self, other: &UpdateFieldMetadataResponse) -> bool
fn eq(&self, other: &UpdateFieldMetadataResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateFieldMetadataResponse
impl Serialize for UpdateFieldMetadataResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for UpdateFieldMetadataResponse
Auto Trait Implementations§
impl Freeze for UpdateFieldMetadataResponse
impl RefUnwindSafe for UpdateFieldMetadataResponse
impl Send for UpdateFieldMetadataResponse
impl Sync for UpdateFieldMetadataResponse
impl Unpin for UpdateFieldMetadataResponse
impl UnsafeUnpin for UpdateFieldMetadataResponse
impl UnwindSafe for UpdateFieldMetadataResponse
Blanket Implementations§
impl<T> Allocation for T
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