Enum storyboard_client::ApiResult[][src]

pub enum ApiResult<T, ApiError> {
    Ok(T),
    Err(ApiError),
}

Variants

Trait Implementations

impl<T: Debug, ApiError: Debug> Debug for ApiResult<T, ApiError>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T, ApiError> Send for ApiResult<T, ApiError> where
    ApiError: Send,
    T: Send

impl<T, ApiError> Sync for ApiResult<T, ApiError> where
    ApiError: Sync,
    T: Sync