pub struct SignRequest<'a> {
pub kind: &'a str,
pub target_id: &'a str,
pub channel: &'a str,
pub platform: &'a str,
pub version: &'a str,
pub sha256: &'a str,
pub size: u64,
pub required_runtime_version: &'a str,
}Fields§
§kind: &'a str§target_id: &'a str§channel: &'a strEmpty for host packages; the publish channel for lxapps/plugins.
platform: &'a str§version: &'a str§sha256: &'a str§size: u64§required_runtime_version: &'a strTrait Implementations§
Source§impl<'a> Clone for SignRequest<'a>
impl<'a> Clone for SignRequest<'a>
Source§fn clone(&self) -> SignRequest<'a>
fn clone(&self) -> SignRequest<'a>
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<'a> Debug for SignRequest<'a>
impl<'a> Debug for SignRequest<'a>
impl<'a> Eq for SignRequest<'a>
Source§impl<'a> PartialEq for SignRequest<'a>
impl<'a> PartialEq for SignRequest<'a>
impl<'a> StructuralPartialEq for SignRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for SignRequest<'a>
impl<'a> RefUnwindSafe for SignRequest<'a>
impl<'a> Send for SignRequest<'a>
impl<'a> Sync for SignRequest<'a>
impl<'a> Unpin for SignRequest<'a>
impl<'a> UnsafeUnpin for SignRequest<'a>
impl<'a> UnwindSafe for SignRequest<'a>
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