pub async fn patch_gist<T, A>(
    client: &T,
    gist_id: A,
    body: &PatchGistBody
) -> Result<Gist, GithubRestError>where
    T: Requester,
    A: Into<String>,
Expand description

Update a gist Allows you to update or delete a gist file and rename gist files. Files from the previous version of the gist that aren’t explicitly changed during an edit are unchanged.