pub struct UpdateFieldMetadataRequest {
pub identity: Option<Box<Identity>>,
pub id: Option<Vec<String>>,
pub branch: Option<String>,
pub updates: Vec<UpdateFieldMetadataEntry>,
}Fields§
§identity: Option<Box<Identity>>§id: Option<Vec<String>>Table identifier path (namespace + table name)
branch: Option<String>Branch to target. When not specified, the main branch is used.
updates: Vec<UpdateFieldMetadataEntry>List of per-field metadata updates to apply
Implementations§
Source§impl UpdateFieldMetadataRequest
impl UpdateFieldMetadataRequest
pub fn new(updates: Vec<UpdateFieldMetadataEntry>) -> UpdateFieldMetadataRequest
Trait Implementations§
Source§impl Clone for UpdateFieldMetadataRequest
impl Clone for UpdateFieldMetadataRequest
Source§fn clone(&self) -> UpdateFieldMetadataRequest
fn clone(&self) -> UpdateFieldMetadataRequest
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 UpdateFieldMetadataRequest
impl Debug for UpdateFieldMetadataRequest
Source§impl Default for UpdateFieldMetadataRequest
impl Default for UpdateFieldMetadataRequest
Source§fn default() -> UpdateFieldMetadataRequest
fn default() -> UpdateFieldMetadataRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateFieldMetadataRequest
impl<'de> Deserialize<'de> for UpdateFieldMetadataRequest
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UpdateFieldMetadataRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UpdateFieldMetadataRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdateFieldMetadataRequest
impl PartialEq for UpdateFieldMetadataRequest
Source§fn eq(&self, other: &UpdateFieldMetadataRequest) -> bool
fn eq(&self, other: &UpdateFieldMetadataRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateFieldMetadataRequest
impl Serialize for UpdateFieldMetadataRequest
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 UpdateFieldMetadataRequest
Auto Trait Implementations§
impl Freeze for UpdateFieldMetadataRequest
impl RefUnwindSafe for UpdateFieldMetadataRequest
impl Send for UpdateFieldMetadataRequest
impl Sync for UpdateFieldMetadataRequest
impl Unpin for UpdateFieldMetadataRequest
impl UnsafeUnpin for UpdateFieldMetadataRequest
impl UnwindSafe for UpdateFieldMetadataRequest
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