pub struct TFilesResp {
pub status: TSStatus,
pub files: Vec<TFile>,
}
Fields§
§status: TSStatus
§files: Vec<TFile>
Implementations§
Source§impl TFilesResp
impl TFilesResp
pub fn new(status: TSStatus, files: Vec<TFile>) -> TFilesResp
pub fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TFilesResp>
pub fn write_to_out_protocol( &self, o_prot: &mut dyn TOutputProtocol, ) -> Result<()>
Trait Implementations§
Source§impl Clone for TFilesResp
impl Clone for TFilesResp
Source§fn clone(&self) -> TFilesResp
fn clone(&self) -> TFilesResp
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 TFilesResp
impl Debug for TFilesResp
Source§impl Hash for TFilesResp
impl Hash for TFilesResp
Source§impl Ord for TFilesResp
impl Ord for TFilesResp
Source§fn cmp(&self, other: &TFilesResp) -> Ordering
fn cmp(&self, other: &TFilesResp) -> 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 TFilesResp
impl PartialEq for TFilesResp
Source§impl PartialOrd for TFilesResp
impl PartialOrd for TFilesResp
impl Eq for TFilesResp
impl StructuralPartialEq for TFilesResp
Auto Trait Implementations§
impl Freeze for TFilesResp
impl RefUnwindSafe for TFilesResp
impl Send for TFilesResp
impl Sync for TFilesResp
impl Unpin for TFilesResp
impl UnwindSafe for TFilesResp
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