pub struct SchemaVersionDescriptor {
pub schema: Option<ISchemaName>,
pub version: Option<i32>,
}
Fields§
§schema: Option<ISchemaName>
§version: Option<i32>
Implementations§
Source§impl SchemaVersionDescriptor
impl SchemaVersionDescriptor
pub fn new<F1, F2>(schema: F1, version: F2) -> SchemaVersionDescriptor
Trait Implementations§
Source§impl Clone for SchemaVersionDescriptor
impl Clone for SchemaVersionDescriptor
Source§fn clone(&self) -> SchemaVersionDescriptor
fn clone(&self) -> SchemaVersionDescriptor
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 SchemaVersionDescriptor
impl Debug for SchemaVersionDescriptor
Source§impl Default for SchemaVersionDescriptor
impl Default for SchemaVersionDescriptor
Source§fn default() -> SchemaVersionDescriptor
fn default() -> SchemaVersionDescriptor
Returns the “default value” for a type. Read more
Source§impl Hash for SchemaVersionDescriptor
impl Hash for SchemaVersionDescriptor
Source§impl Ord for SchemaVersionDescriptor
impl Ord for SchemaVersionDescriptor
Source§fn cmp(&self, other: &SchemaVersionDescriptor) -> Ordering
fn cmp(&self, other: &SchemaVersionDescriptor) -> 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 SchemaVersionDescriptor
impl PartialEq for SchemaVersionDescriptor
Source§impl PartialOrd for SchemaVersionDescriptor
impl PartialOrd for SchemaVersionDescriptor
Source§impl TSerializable for SchemaVersionDescriptor
impl TSerializable for SchemaVersionDescriptor
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<SchemaVersionDescriptor>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for SchemaVersionDescriptor
impl StructuralPartialEq for SchemaVersionDescriptor
Auto Trait Implementations§
impl Freeze for SchemaVersionDescriptor
impl RefUnwindSafe for SchemaVersionDescriptor
impl Send for SchemaVersionDescriptor
impl Sync for SchemaVersionDescriptor
impl Unpin for SchemaVersionDescriptor
impl UnwindSafe for SchemaVersionDescriptor
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