Enum ethcore_rpc::v1::types::Either
[−]
[src]
pub enum Either<A, B> where A: Debug + Clone, B: Debug + Clone {
Either(A),
Or(B),
}
Represents two possible return values.
Variants
Either(A)
Primary value
Or(B)
Secondary value
Trait Implementations
impl<A: Clone, B: Clone> Clone for Either<A, B> where A: Debug + Clone, B: Debug + Clone
[src]
fn clone(&self) -> Either<A, B>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl<A: Debug, B: Debug> Debug for Either<A, B> where A: Debug + Clone, B: Debug + Clone
[src]
impl<A, B> From<A> for Either<A, B> where A: Debug + Clone, B: Debug + Clone
[src]
fn from(a: A) -> Self
Performs the conversion.
impl<A, B> Serialize for Either<A, B> where A: Serialize + Debug + Clone, B: Serialize + Debug + Clone
[src]
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error> where S: Serializer
Serializes this value into this serializer.