Copy as Markdown

Other Tools

//
// DO NOT EDIT. THIS FILE IS GENERATED FROM $SRCDIR/netwerk/url-classifier/nsIChannelClassifierService.idl
//
/// `interface nsIUrlClassifierBlockedChannel : nsISupports`
///
// The actual type definition for the interface. This struct has methods
// declared on it which will call through its vtable. You never want to pass
// this type around by value, always pass it behind a reference.
#[repr(C)]
pub struct nsIUrlClassifierBlockedChannel {
vtable: &'static nsIUrlClassifierBlockedChannelVTable,
/// This field is a phantomdata to ensure that the VTable type and any
/// struct containing it is not safe to send across threads by default, as
/// XPCOM is generally not threadsafe.
///
/// If this type is marked as [rust_sync], there will be explicit `Send` and
/// `Sync` implementations on this type, which will override the inherited
/// negative impls from `Rc`.
__nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
// Make the rust compiler aware that there might be interior mutability
// in what actually implements the interface. This works around UB
// that a rust lint would make blatantly obvious, but doesn't exist.
// This prevents optimizations, but those optimizations weren't available
// before rustc switched to LLVM 16, and they now cause problems because
// of the UB.
// Until there's a lint available to find all our UB, it's simpler to
// avoid the UB in the first place, at the cost of preventing optimizations
// in places that don't cause UB. But again, those optimizations weren't
// available before.
__maybe_interior_mutability: ::std::cell::UnsafeCell<[u8; 0]>,
}
// Implementing XpCom for an interface exposes its IID, which allows for easy
// use of the `.query_interface<T>` helper method. This also defines that
// method for nsIUrlClassifierBlockedChannel.
unsafe impl XpCom for nsIUrlClassifierBlockedChannel {
const IID: nsIID = nsID(0x9b0353a7, 0xab46, 0x4914,
[0x91, 0x78, 0x22, 0x15, 0xee, 0x22, 0x1e, 0x4e]);
}
// We need to implement the RefCounted trait so we can be used with `RefPtr`.
// This trait teaches `RefPtr` how to manage our memory.
unsafe impl RefCounted for nsIUrlClassifierBlockedChannel {
#[inline]
unsafe fn addref(&self) {
self.AddRef();
}
#[inline]
unsafe fn release(&self) {
self.Release();
}
}
// This trait is implemented on all types which can be coerced to from nsIUrlClassifierBlockedChannel.
// It is used in the implementation of `fn coerce<T>`. We hide it from the
// documentation, because it clutters it up a lot.
#[doc(hidden)]
pub trait nsIUrlClassifierBlockedChannelCoerce {
/// Cheaply cast a value of this type from a `nsIUrlClassifierBlockedChannel`.
fn coerce_from(v: &nsIUrlClassifierBlockedChannel) -> &Self;
}
// The trivial implementation: We can obviously coerce ourselves to ourselves.
impl nsIUrlClassifierBlockedChannelCoerce for nsIUrlClassifierBlockedChannel {
#[inline]
fn coerce_from(v: &nsIUrlClassifierBlockedChannel) -> &Self {
v
}
}
impl nsIUrlClassifierBlockedChannel {
/// Cast this `nsIUrlClassifierBlockedChannel` to one of its base interfaces.
#[inline]
pub fn coerce<T: nsIUrlClassifierBlockedChannelCoerce>(&self) -> &T {
T::coerce_from(self)
}
}
// Every interface struct type implements `Deref` to its base interface. This
// causes methods on the base interfaces to be directly avaliable on the
// object. For example, you can call `.AddRef` or `.QueryInterface` directly
// on any interface which inherits from `nsISupports`.
impl ::std::ops::Deref for nsIUrlClassifierBlockedChannel {
type Target = nsISupports;
#[inline]
fn deref(&self) -> &nsISupports {
unsafe {
::std::mem::transmute(self)
}
}
}
// Ensure we can use .coerce() to cast to our base types as well. Any type which
// our base interface can coerce from should be coercable from us as well.
impl<T: nsISupportsCoerce> nsIUrlClassifierBlockedChannelCoerce for T {
#[inline]
fn coerce_from(v: &nsIUrlClassifierBlockedChannel) -> &Self {
T::coerce_from(v)
}
}
// This struct represents the interface's VTable. A pointer to a statically
// allocated version of this struct is at the beginning of every nsIUrlClassifierBlockedChannel
// object. It contains one pointer field for each method in the interface. In
// the case where we can't generate a binding for a method, we include a void
// pointer.
#[doc(hidden)]
#[repr(C)]
pub struct nsIUrlClassifierBlockedChannelVTable {
/// We need to include the members from the base interface's vtable at the start
/// of the VTable definition.
pub __base: nsISupportsVTable,
/* readonly attribute uint8_t reason; */
pub GetReason: unsafe extern "system" fn (this: *const nsIUrlClassifierBlockedChannel, aReason: *mut u8) -> ::nserror::nsresult,
/* readonly attribute ACString tables; */
pub GetTables: unsafe extern "system" fn (this: *const nsIUrlClassifierBlockedChannel, aTables: *mut ::nsstring::nsACString) -> ::nserror::nsresult,
/* readonly attribute AString url; */
pub GetUrl: unsafe extern "system" fn (this: *const nsIUrlClassifierBlockedChannel, aUrl: *mut ::nsstring::nsAString) -> ::nserror::nsresult,
/* readonly attribute uint64_t tabId; */
pub GetTabId: unsafe extern "system" fn (this: *const nsIUrlClassifierBlockedChannel, aTabId: *mut u64) -> ::nserror::nsresult,
/* readonly attribute uint64_t channelId; */
pub GetChannelId: unsafe extern "system" fn (this: *const nsIUrlClassifierBlockedChannel, aChannelId: *mut u64) -> ::nserror::nsresult,
/* readonly attribute boolean isPrivateBrowsing; */
pub GetIsPrivateBrowsing: unsafe extern "system" fn (this: *const nsIUrlClassifierBlockedChannel, aIsPrivateBrowsing: *mut bool) -> ::nserror::nsresult,
/* readonly attribute AString topLevelUrl; */
pub GetTopLevelUrl: unsafe extern "system" fn (this: *const nsIUrlClassifierBlockedChannel, aTopLevelUrl: *mut ::nsstring::nsAString) -> ::nserror::nsresult,
/* void replace (); */
pub Replace: unsafe extern "system" fn (this: *const nsIUrlClassifierBlockedChannel) -> ::nserror::nsresult,
/* void allow (); */
pub Allow: unsafe extern "system" fn (this: *const nsIUrlClassifierBlockedChannel) -> ::nserror::nsresult,
}
// The implementations of the function wrappers which are exposed to rust code.
// Call these methods rather than manually calling through the VTable struct.
impl nsIUrlClassifierBlockedChannel {
pub const TRACKING_PROTECTION: u32 = 0;
pub const SOCIAL_TRACKING_PROTECTION: u32 = 1;
pub const FINGERPRINTING_PROTECTION: u32 = 2;
pub const CRYPTOMINING_PROTECTION: u32 = 3;
/// `readonly attribute uint8_t reason;`
#[inline]
pub unsafe fn GetReason(&self, aReason: *mut u8) -> ::nserror::nsresult {
((*self.vtable).GetReason)(self, aReason)
}
/// `readonly attribute ACString tables;`
#[inline]
pub unsafe fn GetTables(&self, aTables: *mut ::nsstring::nsACString) -> ::nserror::nsresult {
((*self.vtable).GetTables)(self, aTables)
}
/// `readonly attribute AString url;`
#[inline]
pub unsafe fn GetUrl(&self, aUrl: *mut ::nsstring::nsAString) -> ::nserror::nsresult {
((*self.vtable).GetUrl)(self, aUrl)
}
/// `readonly attribute uint64_t tabId;`
#[inline]
pub unsafe fn GetTabId(&self, aTabId: *mut u64) -> ::nserror::nsresult {
((*self.vtable).GetTabId)(self, aTabId)
}
/// `readonly attribute uint64_t channelId;`
#[inline]
pub unsafe fn GetChannelId(&self, aChannelId: *mut u64) -> ::nserror::nsresult {
((*self.vtable).GetChannelId)(self, aChannelId)
}
/// `readonly attribute boolean isPrivateBrowsing;`
#[inline]
pub unsafe fn GetIsPrivateBrowsing(&self, aIsPrivateBrowsing: *mut bool) -> ::nserror::nsresult {
((*self.vtable).GetIsPrivateBrowsing)(self, aIsPrivateBrowsing)
}
/// `readonly attribute AString topLevelUrl;`
#[inline]
pub unsafe fn GetTopLevelUrl(&self, aTopLevelUrl: *mut ::nsstring::nsAString) -> ::nserror::nsresult {
((*self.vtable).GetTopLevelUrl)(self, aTopLevelUrl)
}
/// `void replace ();`
#[inline]
pub unsafe fn Replace(&self, ) -> ::nserror::nsresult {
((*self.vtable).Replace)(self, )
}
/// `void allow ();`
#[inline]
pub unsafe fn Allow(&self, ) -> ::nserror::nsresult {
((*self.vtable).Allow)(self, )
}
}
/// `interface nsIChannelClassifierService : nsISupports`
///
// The actual type definition for the interface. This struct has methods
// declared on it which will call through its vtable. You never want to pass
// this type around by value, always pass it behind a reference.
#[repr(C)]
pub struct nsIChannelClassifierService {
vtable: &'static nsIChannelClassifierServiceVTable,
/// This field is a phantomdata to ensure that the VTable type and any
/// struct containing it is not safe to send across threads by default, as
/// XPCOM is generally not threadsafe.
///
/// If this type is marked as [rust_sync], there will be explicit `Send` and
/// `Sync` implementations on this type, which will override the inherited
/// negative impls from `Rc`.
__nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
// Make the rust compiler aware that there might be interior mutability
// in what actually implements the interface. This works around UB
// that a rust lint would make blatantly obvious, but doesn't exist.
// This prevents optimizations, but those optimizations weren't available
// before rustc switched to LLVM 16, and they now cause problems because
// of the UB.
// Until there's a lint available to find all our UB, it's simpler to
// avoid the UB in the first place, at the cost of preventing optimizations
// in places that don't cause UB. But again, those optimizations weren't
// available before.
__maybe_interior_mutability: ::std::cell::UnsafeCell<[u8; 0]>,
}
// Implementing XpCom for an interface exposes its IID, which allows for easy
// use of the `.query_interface<T>` helper method. This also defines that
// method for nsIChannelClassifierService.
unsafe impl XpCom for nsIChannelClassifierService {
const IID: nsIID = nsID(0x9411409c, 0x5dac, 0x40b9,
[0xba, 0x36, 0x27, 0x38, 0xa7, 0x23, 0x7a, 0x4c]);
}
// We need to implement the RefCounted trait so we can be used with `RefPtr`.
// This trait teaches `RefPtr` how to manage our memory.
unsafe impl RefCounted for nsIChannelClassifierService {
#[inline]
unsafe fn addref(&self) {
self.AddRef();
}
#[inline]
unsafe fn release(&self) {
self.Release();
}
}
// This trait is implemented on all types which can be coerced to from nsIChannelClassifierService.
// It is used in the implementation of `fn coerce<T>`. We hide it from the
// documentation, because it clutters it up a lot.
#[doc(hidden)]
pub trait nsIChannelClassifierServiceCoerce {
/// Cheaply cast a value of this type from a `nsIChannelClassifierService`.
fn coerce_from(v: &nsIChannelClassifierService) -> &Self;
}
// The trivial implementation: We can obviously coerce ourselves to ourselves.
impl nsIChannelClassifierServiceCoerce for nsIChannelClassifierService {
#[inline]
fn coerce_from(v: &nsIChannelClassifierService) -> &Self {
v
}
}
impl nsIChannelClassifierService {
/// Cast this `nsIChannelClassifierService` to one of its base interfaces.
#[inline]
pub fn coerce<T: nsIChannelClassifierServiceCoerce>(&self) -> &T {
T::coerce_from(self)
}
}
// Every interface struct type implements `Deref` to its base interface. This
// causes methods on the base interfaces to be directly avaliable on the
// object. For example, you can call `.AddRef` or `.QueryInterface` directly
// on any interface which inherits from `nsISupports`.
impl ::std::ops::Deref for nsIChannelClassifierService {
type Target = nsISupports;
#[inline]
fn deref(&self) -> &nsISupports {
unsafe {
::std::mem::transmute(self)
}
}
}
// Ensure we can use .coerce() to cast to our base types as well. Any type which
// our base interface can coerce from should be coercable from us as well.
impl<T: nsISupportsCoerce> nsIChannelClassifierServiceCoerce for T {
#[inline]
fn coerce_from(v: &nsIChannelClassifierService) -> &Self {
T::coerce_from(v)
}
}
// This struct represents the interface's VTable. A pointer to a statically
// allocated version of this struct is at the beginning of every nsIChannelClassifierService
// object. It contains one pointer field for each method in the interface. In
// the case where we can't generate a binding for a method, we include a void
// pointer.
#[doc(hidden)]
#[repr(C)]
pub struct nsIChannelClassifierServiceVTable {
/// We need to include the members from the base interface's vtable at the start
/// of the VTable definition.
pub __base: nsISupportsVTable,
/* void addListener (in nsIObserver aObserver); */
pub AddListener: unsafe extern "system" fn (this: *const nsIChannelClassifierService, aObserver: *const nsIObserver) -> ::nserror::nsresult,
/* void removeListener (in nsIObserver aObserver); */
pub RemoveListener: unsafe extern "system" fn (this: *const nsIChannelClassifierService, aObserver: *const nsIObserver) -> ::nserror::nsresult,
}
// The implementations of the function wrappers which are exposed to rust code.
// Call these methods rather than manually calling through the VTable struct.
impl nsIChannelClassifierService {
/// `void addListener (in nsIObserver aObserver);`
#[inline]
pub unsafe fn AddListener(&self, aObserver: *const nsIObserver) -> ::nserror::nsresult {
((*self.vtable).AddListener)(self, aObserver)
}
/// `void removeListener (in nsIObserver aObserver);`
#[inline]
pub unsafe fn RemoveListener(&self, aObserver: *const nsIObserver) -> ::nserror::nsresult {
((*self.vtable).RemoveListener)(self, aObserver)
}
}