pub type SendResult<T> = Result<(T, Assets), SendError>;
Result value when attempting to send an XCM message.
enum SendResult<T> { Ok((T, Assets)), Err(SendError), }
Contains the success value
Contains the error value