pub struct RemovePreloadScript {
pub method: RemovePreloadScriptMethod,
pub params: RemovePreloadScriptParams,
}Fields§
§method: RemovePreloadScriptMethod§params: RemovePreloadScriptParamsImplementations§
Source§impl RemovePreloadScript
impl RemovePreloadScript
pub fn builder() -> RemovePreloadScriptBuilder
Source§impl RemovePreloadScript
impl RemovePreloadScript
pub const IDENTIFIER: &'static str = "script.removePreloadScript"
pub const DOMAIN_DIRECTION: &'static str = "remote"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for RemovePreloadScript
impl Clone for RemovePreloadScript
Source§fn clone(&self) -> RemovePreloadScript
fn clone(&self) -> RemovePreloadScript
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 CommandResult for RemovePreloadScript
impl CommandResult for RemovePreloadScript
type Result = RemovePreloadScriptResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for RemovePreloadScript
impl Debug for RemovePreloadScript
Source§impl<'de> Deserialize<'de> for RemovePreloadScript
impl<'de> Deserialize<'de> for RemovePreloadScript
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<RemovePreloadScript> for Command
impl From<RemovePreloadScript> for Command
Source§fn from(v: RemovePreloadScript) -> Self
fn from(v: RemovePreloadScript) -> Self
Converts to this type from the input type.
Source§impl From<RemovePreloadScript> for ScriptCommand
impl From<RemovePreloadScript> for ScriptCommand
Source§fn from(v: RemovePreloadScript) -> Self
fn from(v: RemovePreloadScript) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RemovePreloadScript
impl PartialEq for RemovePreloadScript
Source§impl Serialize for RemovePreloadScript
impl Serialize for RemovePreloadScript
Source§impl TryFrom<Command> for RemovePreloadScript
impl TryFrom<Command> for RemovePreloadScript
Source§impl TryFrom<ScriptCommand> for RemovePreloadScript
impl TryFrom<ScriptCommand> for RemovePreloadScript
Source§type Error = ScriptCommand
type Error = ScriptCommand
The type returned in the event of a conversion error.
Source§fn try_from(
e: ScriptCommand,
) -> Result<Self, <RemovePreloadScript as TryFrom<ScriptCommand>>::Error>
fn try_from( e: ScriptCommand, ) -> Result<Self, <RemovePreloadScript as TryFrom<ScriptCommand>>::Error>
Performs the conversion.
impl StructuralPartialEq for RemovePreloadScript
Auto Trait Implementations§
impl Freeze for RemovePreloadScript
impl RefUnwindSafe for RemovePreloadScript
impl Send for RemovePreloadScript
impl Sync for RemovePreloadScript
impl Unpin for RemovePreloadScript
impl UnsafeUnpin for RemovePreloadScript
impl UnwindSafe for RemovePreloadScript
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