pub struct SearchInContent {
pub method: SearchInContentMethod,
pub params: SearchInContentParams,
}Expand description
Searches for given string in script content. searchInContent
Fields§
§method: SearchInContentMethod§params: SearchInContentParamsImplementations§
Source§impl SearchInContent
impl SearchInContent
pub fn builder() -> SearchInContentBuilder
Source§impl SearchInContent
impl SearchInContent
pub const IDENTIFIER: &'static str = "Debugger.searchInContent"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SearchInContent
impl Clone for SearchInContent
Source§fn clone(&self) -> SearchInContent
fn clone(&self) -> SearchInContent
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 SearchInContent
impl CommandResult for SearchInContent
type Result = SearchInContentResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SearchInContent
impl Debug for SearchInContent
Source§impl<'de> Deserialize<'de> for SearchInContent
impl<'de> Deserialize<'de> for SearchInContent
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<SearchInContent> for Command
impl From<SearchInContent> for Command
Source§fn from(v: SearchInContent) -> Self
fn from(v: SearchInContent) -> Self
Converts to this type from the input type.
Source§impl From<SearchInContent> for DebuggerCommands
impl From<SearchInContent> for DebuggerCommands
Source§fn from(v: SearchInContent) -> Self
fn from(v: SearchInContent) -> Self
Converts to this type from the input type.
Source§impl From<SearchInContent> for JsProtocolCommands
impl From<SearchInContent> for JsProtocolCommands
Source§fn from(v: SearchInContent) -> Self
fn from(v: SearchInContent) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SearchInContent
impl PartialEq for SearchInContent
Source§impl Serialize for SearchInContent
impl Serialize for SearchInContent
Source§impl TryFrom<Command> for SearchInContent
impl TryFrom<Command> for SearchInContent
Source§impl TryFrom<DebuggerCommands> for SearchInContent
impl TryFrom<DebuggerCommands> for SearchInContent
Source§type Error = DebuggerCommands
type Error = DebuggerCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DebuggerCommands,
) -> Result<Self, <SearchInContent as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <SearchInContent as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for SearchInContent
impl TryFrom<JsProtocolCommands> for SearchInContent
Source§type Error = JsProtocolCommands
type Error = JsProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: JsProtocolCommands,
) -> Result<Self, <SearchInContent as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <SearchInContent as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SearchInContent
Auto Trait Implementations§
impl Freeze for SearchInContent
impl RefUnwindSafe for SearchInContent
impl Send for SearchInContent
impl Sync for SearchInContent
impl Unpin for SearchInContent
impl UnsafeUnpin for SearchInContent
impl UnwindSafe for SearchInContent
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