Can someone describe what the ..
operator does when making a struct? I couldn't find it in the docs, but I also was not certain what the terminology was. I see this in libraries like Vulkano, https://github.com/tomaka/vulkano/blob/master/vulkano-win/src/lib.rs#L25
let ideal = InstanceExtensions {
khr_surface: true,
khr_xlib_surface: true,
khr_xcb_surface: true,
khr_wayland_surface: true,
khr_mir_surface: true,
khr_android_surface: true,
khr_win32_surface: true,
..InstanceExtensions::none()
};
(first post. super noob)