pub struct TransferdFileInfo {
pub file_path: String,
pub file_size: u64,
pub key: String,
pub file_url: String,
/* private fields */
}
Fields§
§file_path: String
§file_size: u64
§key: String
§file_url: String
Trait Implementations§
Source§impl Debug for TransferdFileInfo
impl Debug for TransferdFileInfo
Source§impl Default for TransferdFileInfo
impl Default for TransferdFileInfo
Source§impl RequestMessage for TransferdFileInfo
impl RequestMessage for TransferdFileInfo
fn compute_size(&self) -> u64
fn serial_with_output_stream( &self, os: &mut CodedOutputStream<'_>, ) -> Result<(), Status>
fn parse_from_input_stream( &mut self, is: &mut CodedInputStream<'_>, ) -> Result<(), Status>
fn compute_size_with_tag_and_len(&self) -> u64
fn serial_with_tag_and_len(&self, os: &mut CodedOutputStream<'_>)
fn serial(&self) -> Result<Vec<u8>, String>
fn parse_from_bytes(&mut self, bytes: &[u8]) -> Result<(), Status>
fn parse_from_input_stream_with_tag_and_len( &mut self, is: &mut CodedInputStream<'_>, )
fn parse_from_bytes_return_num(&mut self, bytes: &[u8]) -> Result<u64, Status>
Auto Trait Implementations§
impl !Freeze for TransferdFileInfo
impl RefUnwindSafe for TransferdFileInfo
impl Send for TransferdFileInfo
impl Sync for TransferdFileInfo
impl Unpin for TransferdFileInfo
impl UnwindSafe for TransferdFileInfo
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more