livekit-protocol 0.7.6

Livekit protocol and utilities for the Rust SDK
Documentation
1
2
3
4
5
6
7
package utils

import "unsafe"

func CastStringSlice[OutType, InType ~string](src []InType) []OutType {
	return *(*[]OutType)(unsafe.Pointer(&src))
}