Enum cfdp::source::PutRequestError  
source · pub enum PutRequestError {
    Storage(ByteConversionError),
    AlreadyBusy,
    NoRemoteCfgFound(UnsignedByteField),
    SourceFileNotValidUtf8(Utf8Error),
    FileDoesNotExist,
    FilestoreError(FilestoreError),
}Available on crate feature 
std only.Variants§
Storage(ByteConversionError)
AlreadyBusy
NoRemoteCfgFound(UnsignedByteField)
SourceFileNotValidUtf8(Utf8Error)
FileDoesNotExist
FilestoreError(FilestoreError)
Trait Implementations§
source§impl Debug for PutRequestError
 
impl Debug for PutRequestError
source§impl Display for PutRequestError
 
impl Display for PutRequestError
source§impl Error for PutRequestError
 
impl Error for PutRequestError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
 
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<ByteConversionError> for PutRequestError
 
impl From<ByteConversionError> for PutRequestError
source§fn from(source: ByteConversionError) -> Self
 
fn from(source: ByteConversionError) -> Self
Converts to this type from the input type.
source§impl From<FilestoreError> for PutRequestError
 
impl From<FilestoreError> for PutRequestError
source§fn from(source: FilestoreError) -> Self
 
fn from(source: FilestoreError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PutRequestError
impl RefUnwindSafe for PutRequestError
impl Send for PutRequestError
impl Sync for PutRequestError
impl Unpin for PutRequestError
impl UnwindSafe for PutRequestError
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