Struct xpcom::interfaces::nsIProcessScriptLoader
[−]
[src]
#[repr(C)]pub struct nsIProcessScriptLoader { /* fields omitted */ }
interface nsIProcessScriptLoader : nsISupports
Methods
impl nsIProcessScriptLoader[src]
pub fn coerce<T: nsIProcessScriptLoaderCoerce>(&self) -> &T[src]
Cast this nsIProcessScriptLoader to one of its base interfaces.
impl nsIProcessScriptLoader[src]
pub unsafe fn LoadProcessScript(
&self,
aURL: &nsAString,
aAllowDelayedLoad: bool
) -> nsresult[src]
&self,
aURL: &nsAString,
aAllowDelayedLoad: bool
) -> nsresult
/**
* Load a script in the (possibly remote) process. aURL must be the absolute URL.
* data: URLs are also supported. For example data:,dump("foo\n");
* If aAllowDelayedLoad is true, script will be loaded when the
* remote frame becomes available. Otherwise the script will be loaded
* only if the frame is already available.
*/
void loadProcessScript (in AString aURL, in boolean aAllowDelayedLoad);
pub unsafe fn RemoveDelayedProcessScript(&self, aURL: &nsAString) -> nsresult[src]
/**
* Removes aURL from the list of scripts which support delayed load.
*/
void removeDelayedProcessScript (in AString aURL);
Methods from Deref<Target = nsISupports>
pub fn coerce<T: nsISupportsCoerce>(&self) -> &T[src]
Cast this nsISupports to one of its base interfaces.
pub unsafe fn QueryInterface(
&self,
uuid: &nsIID,
result: *mut *mut c_void
) -> nsresult[src]
&self,
uuid: &nsIID,
result: *mut *mut c_void
) -> nsresult
void QueryInterface (in nsIIDRef uuid, [iid_is (uuid), retval] out nsQIResult result);
pub unsafe fn AddRef(&self) -> nsrefcnt[src]
[noscript,notxpcom] nsrefcnt AddRef ();
pub unsafe fn Release(&self) -> nsrefcnt[src]
[noscript,notxpcom] nsrefcnt Release ();
Trait Implementations
impl XpCom for nsIProcessScriptLoader[src]
const IID: nsIID
IID: nsIID = nsID(2115901984, 45647, 4580, [171, 39, 8, 0, 32, 12, 154, 102])
fn query_interface<T: XpCom>(&self) -> Option<RefPtr<T>>[src]
Perform a QueryInterface call on this object, attempting to dynamically cast it to the requested interface type. Returns Some(RefPtr) if the cast succeeded, and None otherwise. Read more
impl RefCounted for nsIProcessScriptLoader[src]
unsafe fn addref(&self)[src]
Increment the reference count.
unsafe fn release(&self)[src]
Decrement the reference count, potentially freeing backing memory.
impl Deref for nsIProcessScriptLoader[src]
type Target = nsISupports
The resulting type after dereferencing.
fn deref(&self) -> &nsISupports[src]
Dereferences the value.