nokhwa_core/
lib.rs

1#![deny(clippy::pedantic)]
2#![warn(clippy::all)]
3#![cfg_attr(feature = "test-fail-warnings", deny(warnings))]
4#![cfg_attr(feature = "docs-features", feature(doc_cfg))]
5/*
6 * Copyright 2022 l1npengtul <l1npengtul@protonmail.com> / The Nokhwa Contributors
7 *
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 *     http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 */
20
21//! Core type definitions for `nokhwa`
22pub mod buffer;
23pub mod error;
24pub mod pixel_format;
25pub mod traits;
26pub mod types;