pub struct StudioSubmitDBCTransactionRequestBody {
pub content: Option<String>,
pub header_image: Option<Bytes>,
pub owner: String,
pub transaction: String,
}Fields§
§content: Option<String>- Optional content description displayed on Studio dedicated token page
- This is stored off-chain for our frontend to display
- This is NOT the on-chain token metadata
- The on-chain token metadata is done by making a PUT request to the presigned URL
header_image: Option<Bytes>- Optional header image file displayed on Studio token page
- This is stored off-chain for our frontend to display
- This is NOT the on-chain token metadata
- The on-chain token metadata is done by making a PUT request to the presigned URL
owner: String- Owner wallet public key
transaction: String- Base64-encoded signed transaction
Implementations§
Trait Implementations§
Source§impl Clone for StudioSubmitDBCTransactionRequestBody
impl Clone for StudioSubmitDBCTransactionRequestBody
Source§fn clone(&self) -> StudioSubmitDBCTransactionRequestBody
fn clone(&self) -> StudioSubmitDBCTransactionRequestBody
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for StudioSubmitDBCTransactionRequestBody
impl<'de> Deserialize<'de> for StudioSubmitDBCTransactionRequestBody
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 StudioSubmitDBCTransactionRequestBody
impl RefUnwindSafe for StudioSubmitDBCTransactionRequestBody
impl Send for StudioSubmitDBCTransactionRequestBody
impl Sync for StudioSubmitDBCTransactionRequestBody
impl Unpin for StudioSubmitDBCTransactionRequestBody
impl UnsafeUnpin for StudioSubmitDBCTransactionRequestBody
impl UnwindSafe for StudioSubmitDBCTransactionRequestBody
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