pub struct GetWasmBytecodeResult {
pub bytecode: String,
}Fields§
§bytecode: StringScript source. (Encoded as a base64 string when passed over JSON)
Trait Implementations§
Source§impl Clone for GetWasmBytecodeResult
impl Clone for GetWasmBytecodeResult
Source§fn clone(&self) -> GetWasmBytecodeResult
fn clone(&self) -> GetWasmBytecodeResult
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 GetWasmBytecodeResult
impl Debug for GetWasmBytecodeResult
Source§impl<'de> Deserialize<'de> for GetWasmBytecodeResult
impl<'de> Deserialize<'de> for GetWasmBytecodeResult
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
Auto Trait Implementations§
impl Freeze for GetWasmBytecodeResult
impl RefUnwindSafe for GetWasmBytecodeResult
impl Send for GetWasmBytecodeResult
impl Sync for GetWasmBytecodeResult
impl Unpin for GetWasmBytecodeResult
impl UnwindSafe for GetWasmBytecodeResult
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