#[repr(transparent)]pub struct FontFace { /* private fields */ }Expand description
The FontFace object
This API requires the following crate features to be activated: FontFace
Implementations§
source§impl FontFace
impl FontFace
source§impl FontFace
impl FontFace
sourcepub fn new_with_array_buffer(
family: &str,
source: &ArrayBuffer
) -> Result<FontFace, JsValue>
pub fn new_with_array_buffer(
family: &str,
source: &ArrayBuffer
) -> Result<FontFace, JsValue>
The new FontFace(..) constructor, creating a new instance of FontFace
This API requires the following crate features to be activated: FontFace
source§impl FontFace
impl FontFace
source§impl FontFace
impl FontFace
source§impl FontFace
impl FontFace
sourcepub fn new_with_str_and_descriptors(
family: &str,
source: &str,
descriptors: &FontFaceDescriptors
) -> Result<FontFace, JsValue>
pub fn new_with_str_and_descriptors(
family: &str,
source: &str,
descriptors: &FontFaceDescriptors
) -> Result<FontFace, JsValue>
The new FontFace(..) constructor, creating a new instance of FontFace
This API requires the following crate features to be activated: FontFace, FontFaceDescriptors
source§impl FontFace
impl FontFace
sourcepub fn new_with_array_buffer_and_descriptors(
family: &str,
source: &ArrayBuffer,
descriptors: &FontFaceDescriptors
) -> Result<FontFace, JsValue>
pub fn new_with_array_buffer_and_descriptors(
family: &str,
source: &ArrayBuffer,
descriptors: &FontFaceDescriptors
) -> Result<FontFace, JsValue>
The new FontFace(..) constructor, creating a new instance of FontFace
This API requires the following crate features to be activated: FontFace, FontFaceDescriptors
source§impl FontFace
impl FontFace
sourcepub fn new_with_array_buffer_view_and_descriptors(
family: &str,
source: &Object,
descriptors: &FontFaceDescriptors
) -> Result<FontFace, JsValue>
pub fn new_with_array_buffer_view_and_descriptors(
family: &str,
source: &Object,
descriptors: &FontFaceDescriptors
) -> Result<FontFace, JsValue>
The new FontFace(..) constructor, creating a new instance of FontFace
This API requires the following crate features to be activated: FontFace, FontFaceDescriptors
source§impl FontFace
impl FontFace
sourcepub fn new_with_u8_array_and_descriptors(
family: &str,
source: &mut [u8],
descriptors: &FontFaceDescriptors
) -> Result<FontFace, JsValue>
pub fn new_with_u8_array_and_descriptors(
family: &str,
source: &mut [u8],
descriptors: &FontFaceDescriptors
) -> Result<FontFace, JsValue>
The new FontFace(..) constructor, creating a new instance of FontFace
This API requires the following crate features to be activated: FontFace, FontFaceDescriptors
source§impl FontFace
impl FontFace
source§impl FontFace
impl FontFace
sourcepub fn set_family(&self, family: &str)
pub fn set_family(&self, family: &str)
The family setter
This API requires the following crate features to be activated: FontFace
source§impl FontFace
impl FontFace
source§impl FontFace
impl FontFace
source§impl FontFace
impl FontFace
source§impl FontFace
impl FontFace
sourcepub fn set_weight(&self, weight: &str)
pub fn set_weight(&self, weight: &str)
The weight setter
This API requires the following crate features to be activated: FontFace
source§impl FontFace
impl FontFace
source§impl FontFace
impl FontFace
sourcepub fn set_stretch(&self, stretch: &str)
pub fn set_stretch(&self, stretch: &str)
The stretch setter
This API requires the following crate features to be activated: FontFace
source§impl FontFace
impl FontFace
sourcepub fn unicode_range(&self) -> String
pub fn unicode_range(&self) -> String
The unicodeRange getter
This API requires the following crate features to be activated: FontFace
source§impl FontFace
impl FontFace
sourcepub fn set_unicode_range(&self, unicode_range: &str)
pub fn set_unicode_range(&self, unicode_range: &str)
The unicodeRange setter
This API requires the following crate features to be activated: FontFace
source§impl FontFace
impl FontFace
source§impl FontFace
impl FontFace
sourcepub fn set_variant(&self, variant: &str)
pub fn set_variant(&self, variant: &str)
The variant setter
This API requires the following crate features to be activated: FontFace
source§impl FontFace
impl FontFace
sourcepub fn feature_settings(&self) -> String
pub fn feature_settings(&self) -> String
The featureSettings getter
This API requires the following crate features to be activated: FontFace
source§impl FontFace
impl FontFace
sourcepub fn set_feature_settings(&self, feature_settings: &str)
pub fn set_feature_settings(&self, feature_settings: &str)
The featureSettings setter
This API requires the following crate features to be activated: FontFace
source§impl FontFace
impl FontFace
sourcepub fn variation_settings(&self) -> String
pub fn variation_settings(&self) -> String
The variationSettings getter
This API requires the following crate features to be activated: FontFace
source§impl FontFace
impl FontFace
sourcepub fn set_variation_settings(&self, variation_settings: &str)
pub fn set_variation_settings(&self, variation_settings: &str)
The variationSettings setter
This API requires the following crate features to be activated: FontFace
source§impl FontFace
impl FontFace
source§impl FontFace
impl FontFace
sourcepub fn set_display(&self, display: &str)
pub fn set_display(&self, display: &str)
The display setter
This API requires the following crate features to be activated: FontFace
Trait Implementations§
source§impl FromWasmAbi for FontFace
impl FromWasmAbi for FontFace
source§impl<'a> IntoWasmAbi for &'a FontFace
impl<'a> IntoWasmAbi for &'a FontFace
source§impl IntoWasmAbi for FontFace
impl IntoWasmAbi for FontFace
source§impl JsCast for FontFace
impl JsCast for FontFace
source§fn instanceof(val: &JsValue) -> bool
fn instanceof(val: &JsValue) -> bool
instanceof check to see whether the JsValue
provided is an instance of this type. Read moresource§fn unchecked_from_js(val: JsValue) -> Self
fn unchecked_from_js(val: JsValue) -> Self
source§fn unchecked_from_js_ref(val: &JsValue) -> &Self
fn unchecked_from_js_ref(val: &JsValue) -> &Self
source§fn is_instance_of<T>(&self) -> boolwhere
T: JsCast,
fn is_instance_of<T>(&self) -> boolwhere
T: JsCast,
T. Read moresource§fn dyn_into<T>(self) -> Result<T, Self>where
T: JsCast,
fn dyn_into<T>(self) -> Result<T, Self>where
T: JsCast,
T. Read moresource§fn dyn_ref<T>(&self) -> Option<&T>where
T: JsCast,
fn dyn_ref<T>(&self) -> Option<&T>where
T: JsCast,
T. Read moresource§fn unchecked_into<T>(self) -> Twhere
T: JsCast,
fn unchecked_into<T>(self) -> Twhere
T: JsCast,
source§impl OptionFromWasmAbi for FontFace
impl OptionFromWasmAbi for FontFace
source§impl<'a> OptionIntoWasmAbi for &'a FontFace
impl<'a> OptionIntoWasmAbi for &'a FontFace
source§impl OptionIntoWasmAbi for FontFace
impl OptionIntoWasmAbi for FontFace
source§impl RefFromWasmAbi for FontFace
impl RefFromWasmAbi for FontFace
§type Abi = <JsValue as RefFromWasmAbi>::Abi
type Abi = <JsValue as RefFromWasmAbi>::Abi
Self are recovered from.§type Anchor = ManuallyDrop<FontFace>
type Anchor = ManuallyDrop<FontFace>
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous. Read moreAuto Trait Implementations§
impl RefUnwindSafe for FontFace
impl Send for FontFace
impl Sync for FontFace
impl Unpin for FontFace
impl UnwindSafe for FontFace
Blanket Implementations§
source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
IntoWasmAbi::Abisource§fn return_abi(self, extra: &mut dyn Stack) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self, extra: &mut dyn Stack) -> <T as ReturnWasmAbi>::Abi
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err. Read more