Type Alias xcm_simulator::SendResult
source · pub type SendResult<T> = Result<(T, MultiAssets), SendError>;Expand description
Result value when attempting to send an XCM message.
Aliased Type§
enum SendResult<T> {
Ok((T, MultiAssets)),
Err(SendError),
}