pub struct TSchemaNode {
pub node_name: String,
pub node_type: i8,
}
Fields§
§node_name: String
§node_type: i8
Implementations§
Source§impl TSchemaNode
impl TSchemaNode
pub fn new(node_name: String, node_type: i8) -> TSchemaNode
pub fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TSchemaNode>
pub fn write_to_out_protocol( &self, o_prot: &mut dyn TOutputProtocol, ) -> Result<()>
Trait Implementations§
Source§impl Clone for TSchemaNode
impl Clone for TSchemaNode
Source§fn clone(&self) -> TSchemaNode
fn clone(&self) -> TSchemaNode
Returns a copy 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 TSchemaNode
impl Debug for TSchemaNode
Source§impl Hash for TSchemaNode
impl Hash for TSchemaNode
Source§impl Ord for TSchemaNode
impl Ord for TSchemaNode
Source§fn cmp(&self, other: &TSchemaNode) -> Ordering
fn cmp(&self, other: &TSchemaNode) -> 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 TSchemaNode
impl PartialEq for TSchemaNode
Source§impl PartialOrd for TSchemaNode
impl PartialOrd for TSchemaNode
impl Eq for TSchemaNode
impl StructuralPartialEq for TSchemaNode
Auto Trait Implementations§
impl Freeze for TSchemaNode
impl RefUnwindSafe for TSchemaNode
impl Send for TSchemaNode
impl Sync for TSchemaNode
impl Unpin for TSchemaNode
impl UnwindSafe for TSchemaNode
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