Fix some links to private elements

This commit is contained in:
Dominik Nakamura 2020-12-29 21:49:02 +09:00
parent ed7d411524
commit a007f3dc1c
No known key found for this signature in database
GPG key ID: E4C6A749B2491910
3 changed files with 2 additions and 5 deletions

View file

@ -25,7 +25,6 @@ obws = "0.1.0"
In addition, you will need to use the [tokio](https://tokio.rs) runtime (currently `v0.3.x`), to
use this library as it makes heavy use of async/await and is bound to this runtime.
[cargo-edit]: https://github.com/killercup/cargo-edit
### Example
@ -57,7 +56,6 @@ async fn main() -> Result<()> {
Ok(())
}
```
## License

View file

@ -833,8 +833,7 @@ pub struct Bounds {
}
/// Request information for
/// [`reorder_scene_items`](crate::client::Scenes::reorder_scene_items) as part of
/// [`ReorderLineItems`](RequestType::ReorderSceneItems).
/// [`reorder_scene_items`](crate::client::Scenes::reorder_scene_items).
#[skip_serializing_none]
#[derive(Debug, Default, Serialize)]
pub struct Scene<'a> {

View file

@ -48,7 +48,7 @@ pub struct Version {
#[serde(deserialize_with = "de::string_comma_list")]
pub available_requests: HashSet<String>,
/// List of supported formats for features that use image export (like the
/// [`TakeSourceScreenshot`](crate::requests::RequestType::TakeSourceScreenshot) request type)
/// [`take_source_screenshot`](crate::client::Sources::take_source_screenshot) request)
/// formatted as a comma-separated list string.
#[serde(deserialize_with = "de::string_comma_list")]
pub supported_image_export_formats: HashSet<String>,