pub struct SceneCollections {
pub current: String,
pub collections: Vec<String>,
}Expand description
Response value for crate::client::SceneCollections::list.
Fields§
§current: StringThe name of the current scene collection.
collections: Vec<String>Array of all available scene collections.
Trait Implementations§
Source§impl Clone for SceneCollections
impl Clone for SceneCollections
Source§fn clone(&self) -> SceneCollections
fn clone(&self) -> SceneCollections
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 SceneCollections
impl Debug for SceneCollections
Source§impl Default for SceneCollections
impl Default for SceneCollections
Source§fn default() -> SceneCollections
fn default() -> SceneCollections
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SceneCollections
impl<'de> Deserialize<'de> for SceneCollections
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
Source§impl Hash for SceneCollections
impl Hash for SceneCollections
Source§impl Ord for SceneCollections
impl Ord for SceneCollections
Source§fn cmp(&self, other: &SceneCollections) -> Ordering
fn cmp(&self, other: &SceneCollections) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SceneCollections
impl PartialEq for SceneCollections
Source§impl PartialOrd for SceneCollections
impl PartialOrd for SceneCollections
Source§impl Serialize for SceneCollections
impl Serialize for SceneCollections
impl Eq for SceneCollections
impl StructuralPartialEq for SceneCollections
Auto Trait Implementations§
impl Freeze for SceneCollections
impl RefUnwindSafe for SceneCollections
impl Send for SceneCollections
impl Sync for SceneCollections
impl Unpin for SceneCollections
impl UnsafeUnpin for SceneCollections
impl UnwindSafe for SceneCollections
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