pub struct RedisVersion {
pub version: Option<String>,
pub eol_date: Option<String>,
pub is_preview: Option<bool>,
pub is_default: Option<bool>,
pub extra: Value,
}
Expand description
RedisVersion
Fields§
§version: Option<String>
§eol_date: Option<String>
§is_preview: Option<bool>
§is_default: Option<bool>
§extra: Value
Additional fields from the API
Trait Implementations§
Source§impl Clone for RedisVersion
impl Clone for RedisVersion
Source§fn clone(&self) -> RedisVersion
fn clone(&self) -> RedisVersion
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RedisVersion
impl Debug for RedisVersion
Source§impl<'de> Deserialize<'de> for RedisVersion
impl<'de> Deserialize<'de> for RedisVersion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RedisVersion
impl RefUnwindSafe for RedisVersion
impl Send for RedisVersion
impl Sync for RedisVersion
impl Unpin for RedisVersion
impl UnwindSafe for RedisVersion
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more