SftpChannelResult

Type Alias SftpChannelResult 

Source
pub type SftpChannelResult<T> = Result<T, SftpChannelError>;
Expand description

Represents the result of some SFTP channel operation

Aliased Type§

pub enum SftpChannelResult<T> {
    Ok(T),
    Err(SftpChannelError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(SftpChannelError)

Contains the error value