pub struct UiNodeScriptAttributes {
pub _async: bool,
pub crossorigin: String,
pub id: String,
pub integrity: String,
pub node_type: String,
pub nonce: String,
pub referrerpolicy: String,
pub src: String,
pub _type: String,
}Fields§
§_async: boolThe script async type
crossorigin: StringThe script cross origin policy
id: StringA unique identifier
integrity: StringThe script’s integrity hash
node_type: StringNodeType represents this node’s types. It is a mirror of node.type and is primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is "script".
nonce: StringNonce for CSP A nonce you may want to use to improve your Content Security Policy. You do not have to use this value but if you want to improve your CSP policies you may use it. You can also choose to use your own nonce value!
referrerpolicy: StringThe script referrer policy
src: StringThe script source
_type: StringThe script MIME type
Implementations§
Trait Implementations§
source§impl Clone for UiNodeScriptAttributes
impl Clone for UiNodeScriptAttributes
source§fn clone(&self) -> UiNodeScriptAttributes
fn clone(&self) -> UiNodeScriptAttributes
Returns a copy 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 UiNodeScriptAttributes
impl Debug for UiNodeScriptAttributes
source§impl<'de> Deserialize<'de> for UiNodeScriptAttributes
impl<'de> Deserialize<'de> for UiNodeScriptAttributes
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<UiNodeScriptAttributes> for UiNodeScriptAttributes
impl PartialEq<UiNodeScriptAttributes> for UiNodeScriptAttributes
source§fn eq(&self, other: &UiNodeScriptAttributes) -> bool
fn eq(&self, other: &UiNodeScriptAttributes) -> bool
This method tests for
self and other values to be equal, and is used
by ==.