pub struct BigtableProtoConfig {
pub proto_message_name: Option<String>,
pub schema_bundle_id: Option<String>,
}Expand description
Information related to a Bigtable protobuf column.
This type is not used in any activity, and only used as part of another schema.
Fields§
§proto_message_name: Option<String>Optional. The fully qualified proto message name of the protobuf. In the format of “foo.bar.Message”.
schema_bundle_id: Option<String>Optional. The ID of the Bigtable SchemaBundle resource associated with this protobuf. The ID should be referred to within the parent table, e.g., foo rather than projects/{project}/instances/{instance}/tables/{table}/schemaBundles/foo. See more details on Bigtable SchemaBundles.
Trait Implementations§
Source§impl Clone for BigtableProtoConfig
impl Clone for BigtableProtoConfig
Source§fn clone(&self) -> BigtableProtoConfig
fn clone(&self) -> BigtableProtoConfig
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 BigtableProtoConfig
impl Debug for BigtableProtoConfig
Source§impl Default for BigtableProtoConfig
impl Default for BigtableProtoConfig
Source§fn default() -> BigtableProtoConfig
fn default() -> BigtableProtoConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BigtableProtoConfig
impl<'de> Deserialize<'de> for BigtableProtoConfig
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
Source§impl Serialize for BigtableProtoConfig
impl Serialize for BigtableProtoConfig
impl Part for BigtableProtoConfig
Auto Trait Implementations§
impl Freeze for BigtableProtoConfig
impl RefUnwindSafe for BigtableProtoConfig
impl Send for BigtableProtoConfig
impl Sync for BigtableProtoConfig
impl Unpin for BigtableProtoConfig
impl UnwindSafe for BigtableProtoConfig
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