pub struct KeySourceActions {
pub type: KeySourceActionsType,
pub id: String,
pub actions: Vec<KeySourceAction>,
}Fields§
§type: KeySourceActionsType§id: String§actions: Vec<KeySourceAction>Implementations§
Source§impl KeySourceActions
impl KeySourceActions
pub fn builder() -> KeySourceActionsBuilder
Source§impl KeySourceActions
impl KeySourceActions
pub fn new( type: impl Into<KeySourceActionsType>, id: impl Into<String>, actions: Vec<KeySourceAction>, ) -> Self
Source§impl KeySourceActions
impl KeySourceActions
pub const IDENTIFIER: &'static str = "input.KeySourceActions"
pub const DOMAIN_DIRECTION: &'static str = "remote"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for KeySourceActions
impl Clone for KeySourceActions
Source§fn clone(&self) -> KeySourceActions
fn clone(&self) -> KeySourceActions
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 KeySourceActions
impl Debug for KeySourceActions
Source§impl<'de> Deserialize<'de> for KeySourceActions
impl<'de> Deserialize<'de> for KeySourceActions
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 From<KeySourceActions> for SourceActions
impl From<KeySourceActions> for SourceActions
Source§fn from(v: KeySourceActions) -> Self
fn from(v: KeySourceActions) -> Self
Converts to this type from the input type.
Source§impl PartialEq for KeySourceActions
impl PartialEq for KeySourceActions
Source§impl Serialize for KeySourceActions
impl Serialize for KeySourceActions
Source§impl TryFrom<SourceActions> for KeySourceActions
impl TryFrom<SourceActions> for KeySourceActions
Source§type Error = SourceActions
type Error = SourceActions
The type returned in the event of a conversion error.
impl StructuralPartialEq for KeySourceActions
Auto Trait Implementations§
impl Freeze for KeySourceActions
impl RefUnwindSafe for KeySourceActions
impl Send for KeySourceActions
impl Sync for KeySourceActions
impl Unpin for KeySourceActions
impl UnsafeUnpin for KeySourceActions
impl UnwindSafe for KeySourceActions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more