pub struct LoadUnpackedReturnObject {
pub id: String,
}Expand description
Installs an unpacked extension from the filesystem similar to –load-extension CLI flags. Returns extension ID once the extension has been installed. Available if the client is connected using the –remote-debugging-pipe flag and the –enable-unsafe-extension-debugging flag is set.
Fields§
§id: StringExtension id.
Trait Implementations§
Source§impl Clone for LoadUnpackedReturnObject
impl Clone for LoadUnpackedReturnObject
Source§fn clone(&self) -> LoadUnpackedReturnObject
fn clone(&self) -> LoadUnpackedReturnObject
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 LoadUnpackedReturnObject
impl Debug for LoadUnpackedReturnObject
Source§impl<'de> Deserialize<'de> for LoadUnpackedReturnObject
impl<'de> Deserialize<'de> for LoadUnpackedReturnObject
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 PartialEq for LoadUnpackedReturnObject
impl PartialEq for LoadUnpackedReturnObject
Source§impl Serialize for LoadUnpackedReturnObject
impl Serialize for LoadUnpackedReturnObject
impl StructuralPartialEq for LoadUnpackedReturnObject
Auto Trait Implementations§
impl Freeze for LoadUnpackedReturnObject
impl RefUnwindSafe for LoadUnpackedReturnObject
impl Send for LoadUnpackedReturnObject
impl Sync for LoadUnpackedReturnObject
impl Unpin for LoadUnpackedReturnObject
impl UnsafeUnpin for LoadUnpackedReturnObject
impl UnwindSafe for LoadUnpackedReturnObject
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