pub struct SetSchemaVersionStateRequest {
pub schema_version: Option<SchemaVersionDescriptor>,
pub state: Option<SchemaVersionState>,
}
Fields§
§schema_version: Option<SchemaVersionDescriptor>
§state: Option<SchemaVersionState>
Implementations§
Source§impl SetSchemaVersionStateRequest
impl SetSchemaVersionStateRequest
pub fn new<F1, F2>( schema_version: F1, state: F2, ) -> SetSchemaVersionStateRequest
Trait Implementations§
Source§impl Clone for SetSchemaVersionStateRequest
impl Clone for SetSchemaVersionStateRequest
Source§fn clone(&self) -> SetSchemaVersionStateRequest
fn clone(&self) -> SetSchemaVersionStateRequest
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 SetSchemaVersionStateRequest
impl Debug for SetSchemaVersionStateRequest
Source§impl Default for SetSchemaVersionStateRequest
impl Default for SetSchemaVersionStateRequest
Source§fn default() -> SetSchemaVersionStateRequest
fn default() -> SetSchemaVersionStateRequest
Returns the “default value” for a type. Read more
Source§impl Hash for SetSchemaVersionStateRequest
impl Hash for SetSchemaVersionStateRequest
Source§impl Ord for SetSchemaVersionStateRequest
impl Ord for SetSchemaVersionStateRequest
Source§fn cmp(&self, other: &SetSchemaVersionStateRequest) -> Ordering
fn cmp(&self, other: &SetSchemaVersionStateRequest) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SetSchemaVersionStateRequest
impl PartialEq for SetSchemaVersionStateRequest
Source§fn eq(&self, other: &SetSchemaVersionStateRequest) -> bool
fn eq(&self, other: &SetSchemaVersionStateRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for SetSchemaVersionStateRequest
impl PartialOrd for SetSchemaVersionStateRequest
Source§impl TSerializable for SetSchemaVersionStateRequest
impl TSerializable for SetSchemaVersionStateRequest
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<SetSchemaVersionStateRequest>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for SetSchemaVersionStateRequest
impl StructuralPartialEq for SetSchemaVersionStateRequest
Auto Trait Implementations§
impl Freeze for SetSchemaVersionStateRequest
impl RefUnwindSafe for SetSchemaVersionStateRequest
impl Send for SetSchemaVersionStateRequest
impl Sync for SetSchemaVersionStateRequest
impl Unpin for SetSchemaVersionStateRequest
impl UnwindSafe for SetSchemaVersionStateRequest
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