pub type SendResult<T> = Result<(T, Assets), SendError>;
Expand description

Result value when attempting to send an XCM message.

Aliased Type§

enum SendResult<T> {
    Ok((T, Assets)),
    Err(SendError),
}

Variants§

§1.0.0

Ok((T, Assets))

Contains the success value

§1.0.0

Err(SendError)

Contains the error value