pub struct UpdateScriptOutput {
pub script: Option<Script>,
}Fields§
§script: Option<Script>The newly created script record with a unique script ID. The new script's storage location reflects an Amazon S3 location: (1) If the script was uploaded from an S3 bucket under your account, the storage location reflects the information that was provided in the CreateScript request; (2) If the script file was uploaded from a local zip file, the storage location reflects an S3 location controls by the Amazon GameLift service.
Trait Implementations§
Source§impl Clone for UpdateScriptOutput
impl Clone for UpdateScriptOutput
Source§fn clone(&self) -> UpdateScriptOutput
fn clone(&self) -> UpdateScriptOutput
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 UpdateScriptOutput
impl Debug for UpdateScriptOutput
Source§impl Default for UpdateScriptOutput
impl Default for UpdateScriptOutput
Source§fn default() -> UpdateScriptOutput
fn default() -> UpdateScriptOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateScriptOutput
impl<'de> Deserialize<'de> for UpdateScriptOutput
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 for UpdateScriptOutput
impl PartialEq for UpdateScriptOutput
impl StructuralPartialEq for UpdateScriptOutput
Auto Trait Implementations§
impl Freeze for UpdateScriptOutput
impl RefUnwindSafe for UpdateScriptOutput
impl Send for UpdateScriptOutput
impl Sync for UpdateScriptOutput
impl Unpin for UpdateScriptOutput
impl UnwindSafe for UpdateScriptOutput
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